From 03aab63796201a6b3aca2c4e572a03350888bd80 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 3 Apr 2024 03:09:47 -0500 Subject: [PATCH 01/40] first step, gives HPR FA and makes HT go away from the cases. --- code/modules/cm_marines/equipment/guncases.dm | 9 ++++----- code/modules/projectiles/guns/rifles.dm | 20 +++++++++++-------- code/modules/projectiles/magazines/rifles.dm | 4 +++- 3 files changed, 19 insertions(+), 14 deletions(-) diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 7184827fda4..61c20e8faa3 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -58,16 +58,15 @@ //------------ /obj/item/storage/box/guncase/lmg name = "\improper M41AE2 heavy pulse rifle case" - desc = "A gun case containing the M41AE2 heavy pulse rifle. You can get additional ammunition at requisitions." - storage_slots = 5 + desc = "A plastic hard weapon case containing the M41AE2 Heavy Pulse Rifle and three magazines." + storage_slots = 4 can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg) /obj/item/storage/box/guncase/lmg/fill_preset_inventory() new /obj/item/weapon/gun/rifle/lmg(src) new /obj/item/ammo_magazine/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg/holo_target(src) - new /obj/item/attachable/flashlight - new /obj/item/attachable/bipod + new /obj/item/ammo_magazine/rifle/lmg(src) + new /obj/item/ammo_magazine/rifle/lmg(src) //------------ /obj/item/storage/box/guncase/m41aMK1 diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 76470513f33..12abd22250d 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1216,14 +1216,14 @@ /obj/item/weapon/gun/rifle/lmg name = "\improper M41AE2 heavy pulse rifle" - desc = "A large squad support weapon capable of laying down sustained suppressing fire from a mounted position. While unstable and less accurate, it can be lugged and shot with two hands. Like it's smaller brothers, the M41A MK2 and M4RA, the M41AE2 is chambered in 10mm." + desc = "An LMG variant of the M41A. Offers greater sustained firepower at the cost of a grenade launcher, and some handling." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m41ae2" item_state = "m41ae2" reload_sound = 'sound/weapons/handling/hpr_reload.ogg' unload_sound = 'sound/weapons/handling/hpr_unload.ogg' - fire_sound = 'sound/weapons/gun_hpr.ogg' + fire_sound = "gun_pulse" aim_slowdown = SLOWDOWN_ADS_LMG current_mag = /obj/item/ammo_magazine/rifle/lmg attachable_allowed = list( @@ -1240,9 +1240,13 @@ /obj/item/attachable/burstfire_assembly, /obj/item/attachable/magnetic_harness, ) + starting_attachment_types = list( + /obj/item/attachable/bipod, + ) - flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_WIELDED_FIRING_ONLY|GUN_SUPPORT_PLATFORM + flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_WIELDED_FIRING_ONLY gun_category = GUN_CATEGORY_HEAVY + start_automatic = TRUE /obj/item/weapon/gun/rifle/lmg/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 23, "under_x" = 23, "under_y" = 12, "stock_x" = 24, "stock_y" = 12) @@ -1250,15 +1254,15 @@ /obj/item/weapon/gun/rifle/lmg/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_LMG) - set_burst_amount(BURST_AMOUNT_TIER_5) - set_burst_delay(FIRE_DELAY_TIER_LMG) + set_fire_delay(FIRE_DELAY_TIER_10) + set_burst_amount(BURST_AMOUNT_TIER_4) + set_burst_delay(FIRE_DELAY_TIER_11) fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_3 fa_max_scatter = SCATTER_AMOUNT_TIER_4 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_6 - burst_scatter_mult = SCATTER_AMOUNT_TIER_5 + scatter = SCATTER_AMOUNT_TIER_9 + burst_scatter_mult = SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_2 damage_mult = BASE_BULLET_DAMAGE_MULT recoil_unwielded = RECOIL_AMOUNT_TIER_1 diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index 91f7bbca33e..00bf6bd8895 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -300,12 +300,14 @@ flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER ammo_band_icon = "+m41ae2_band" ammo_band_icon_empty = "+m41ae2_band_e" + w_class = SIZE_LARGE + reload_delay = 5 /obj/item/ammo_magazine/rifle/lmg/holo_target name = "\improper M41AE2 ammo box (10x24mm holo-target)" desc = "A semi-rectangular box of holo-target rounds for the M41AE2 Heavy Pulse Rifle." default_ammo = /datum/ammo/bullet/rifle/holo_target - max_rounds = 200 + max_rounds = 300 ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING /obj/item/ammo_magazine/rifle/lmg/heap From d825fcd20d402186167c8c4a24fc20639139d5bc Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sun, 16 Jun 2024 12:54:44 -0500 Subject: [PATCH 02/40] probably working bipod need to debug later --- code/modules/projectiles/gun_attachables.dm | 23 +++++++++++++++++++++ code/modules/projectiles/guns/rifles.dm | 16 ++++++-------- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index d7ec91b8ec4..e2ec34136f1 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3306,6 +3306,8 @@ Defined in conflicts.dm of the #defines folder. recoil_mod = RECOIL_AMOUNT_TIER_5 burst_scatter_mod = 0 delay_mod = FIRE_DELAY_TIER_12 + if(istype(G,/obj/item/weapon/gun/rifle/lmg)) + delay_mod = 0 G.recalculate_attachment_bonuses() G.stop_fire() var/mob/living/user @@ -3348,6 +3350,8 @@ Defined in conflicts.dm of the #defines folder. burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 if(istype(G,/obj/item/weapon/gun/rifle/sniper/M42A)) delay_mod = -FIRE_DELAY_TIER_7 + else if(istype(G,/obj/item/weapon/gun/rifle/lmg))) + delay_mod = 0 else delay_mod = -FIRE_DELAY_TIER_12 G.recalculate_attachment_bonuses() @@ -3396,6 +3400,25 @@ Defined in conflicts.dm of the #defines folder. return O2 return 0 +/obj/item/attachable/bipod/integral + name = "integral bipod" + desc = "An integral bipod for the M41AE2 Heavy Pulse Rifle." + icon_state = "bipod" + attach_icon = "bipod_a" + slot = "under" + size_mod = 0 + melee_mod = 0 + flags_attach_features = ATTACH_ACTIVATION + attachment_action_type = /datum/action/item_action/toggle + +/obj/item/attachable/bipod/integral/New() + ..() + + delay_mod = 0 + wield_delay_mod = WIELD_DELAY_FAST + accuracy_mod = -HIT_ACCURACY_MULT_TIER_5 + scatter_mod = SCATTER_AMOUNT_TIER_9 + recoil_mod = RECOIL_AMOUNT_TIER_5 /obj/item/attachable/bipod/m60 name = "bipod" diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 12abd22250d..4db72642819 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1230,21 +1230,17 @@ /obj/item/attachable/suppressor, /obj/item/attachable/reddot, /obj/item/attachable/reflex, - /obj/item/attachable/verticalgrip, - /obj/item/attachable/angledgrip, - /obj/item/attachable/flashlight/grip, /obj/item/attachable/flashlight, - /obj/item/attachable/bipod, + /obj/item/attachable/bipod/integral + /obj/item/attachable/stock/rifle/collapsible /obj/item/attachable/heavy_barrel, /obj/item/attachable/compensator, /obj/item/attachable/burstfire_assembly, /obj/item/attachable/magnetic_harness, ) - starting_attachment_types = list( - /obj/item/attachable/bipod, - ) + starting_attachment_types = list(/obj/item/attachable/bipod/integral, /obj/item/attachable/stock/rifle/collapsible) - flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER|GUN_WIELDED_FIRING_ONLY + flags_gun_features = GUN_CAN_POINTBLANK|GUN_AMMO_COUNTER gun_category = GUN_CATEGORY_HEAVY start_automatic = TRUE @@ -1254,14 +1250,14 @@ /obj/item/weapon/gun/rifle/lmg/set_gun_config_values() ..() - set_fire_delay(FIRE_DELAY_TIER_10) + set_fire_delay(FIRE_DELAY_TIER_11) set_burst_amount(BURST_AMOUNT_TIER_4) set_burst_delay(FIRE_DELAY_TIER_11) fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_3 fa_max_scatter = SCATTER_AMOUNT_TIER_4 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_9 + scatter = SCATTER_AMOUNT_TIER_8 burst_scatter_mult = SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_2 damage_mult = BASE_BULLET_DAMAGE_MULT From 6350deea93f6ffbc30aaa5c8bc08e6edd2df2a17 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sat, 22 Jun 2024 00:59:30 -0500 Subject: [PATCH 03/40] bugsquishing --- code/modules/projectiles/gun_attachables.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 9b545618a6b..63c037db57f 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3315,8 +3315,6 @@ Defined in conflicts.dm of the #defines folder. recoil_mod = RECOIL_AMOUNT_TIER_5 burst_scatter_mod = 0 delay_mod = FIRE_DELAY_TIER_12 - if(istype(G,/obj/item/weapon/gun/rifle/lmg)) - delay_mod = 0 G.recalculate_attachment_bonuses() G.stop_fire() var/mob/living/user @@ -3359,7 +3357,7 @@ Defined in conflicts.dm of the #defines folder. burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 if(istype(G,/obj/item/weapon/gun/rifle/sniper/M42A)) delay_mod = -FIRE_DELAY_TIER_7 - else if(istype(G,/obj/item/weapon/gun/rifle/lmg))) + else if(istype(G,/obj/item/weapon/gun/rifle/lmg)) delay_mod = 0 else delay_mod = -FIRE_DELAY_TIER_12 From 72f54fd5af912cb5cef866463a8c8b4030ebd3fb Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sat, 22 Jun 2024 01:07:10 -0500 Subject: [PATCH 04/40] more bugfixing --- code/modules/projectiles/guns/rifles.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 01fad010f0b..7cebcf3b2f3 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1246,8 +1246,8 @@ /obj/item/attachable/reddot, /obj/item/attachable/reflex, /obj/item/attachable/flashlight, - /obj/item/attachable/bipod/integral - /obj/item/attachable/stock/rifle/collapsible + /obj/item/attachable/bipod/integral, + /obj/item/attachable/stock/rifle/collapsible, /obj/item/attachable/heavy_barrel, /obj/item/attachable/compensator, /obj/item/attachable/burstfire_assembly, From d95812ad15ab2d04c3a8e84976a40fdbe00f0366 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sat, 22 Jun 2024 01:27:16 -0500 Subject: [PATCH 05/40] makes the magazines fit into backpacks and gen pouches but not the ammo rig or magpouches as intended --- code/modules/projectiles/magazines/rifles.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index 627faf73ffe..1515bb89850 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -306,7 +306,7 @@ flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER ammo_band_icon = "+m41ae2_band" ammo_band_icon_empty = "+m41ae2_band_e" - w_class = SIZE_LARGE + w_class = SIZE_MEDIUM reload_delay = 5 /obj/item/ammo_magazine/rifle/lmg/holo_target From 000537ee0f0f49a5f88e2d044cf19ab7eee96ece Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Mon, 24 Jun 2024 22:06:19 -0500 Subject: [PATCH 06/40] maybe nerfed right --- code/modules/projectiles/guns/rifles.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 7cebcf3b2f3..964d1365986 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1272,7 +1272,7 @@ fa_max_scatter = SCATTER_AMOUNT_TIER_4 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_8 + scatter = SCATTER_AMOUNT_TIER_7 burst_scatter_mult = SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_2 damage_mult = BASE_BULLET_DAMAGE_MULT From 6feeb1cb2cb749ddc1bfb4cb00275f9de313e727 Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Mon, 24 Jun 2024 22:36:41 -0500 Subject: [PATCH 07/40] new sprites --- code/modules/projectiles/gun_attachables.dm | 2 +- code/modules/projectiles/guns/rifles.dm | 4 ++-- icons/obj/items/weapons/guns/attachments.dmi | Bin 37702 -> 37883 bytes .../items/weapons/guns/attachments/under.dmi | Bin 14556 -> 14600 bytes .../weapons/guns/guns_by_faction/uscm.dmi | Bin 33526 -> 33435 bytes 5 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 63c037db57f..2fcc8765986 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3411,7 +3411,7 @@ Defined in conflicts.dm of the #defines folder. name = "integral bipod" desc = "An integral bipod for the M41AE2 Heavy Pulse Rifle." icon_state = "bipod" - attach_icon = "bipod_a" + attach_icon = "bipod_integ" slot = "under" size_mod = 0 melee_mod = 0 diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 964d1365986..d80b7852540 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1273,10 +1273,10 @@ accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_7 - burst_scatter_mult = SCATTER_AMOUNT_TIER_7 + burst_scatter_mult = -SCATTER_AMOUNT_TIER_7 scatter_unwielded = SCATTER_AMOUNT_TIER_2 damage_mult = BASE_BULLET_DAMAGE_MULT - recoil_unwielded = RECOIL_AMOUNT_TIER_1 + recoil_unwielded = RECOIL_AMOUNT_TIER_4 diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi index 332217fe1cf0160b19b425dd1ba0cdd0ce459d34..c473cd5d228e4c7017899e265b69c22aa89a72b1 100644 GIT binary patch delta 16532 zcmZ|01ymGo_%=K=7A2x|NtcLpD~N!ANGV7NBGTOpgMpNQw9=B&AhC2xiLlbm(p^jL z!m|4fzyJH5^L};C&d$zGJ##;IUDth2S03ScKH*nRLK1=sE@>jLv)b+haVZytpw_*Z zZ1kp}3#dS^{W)%7S^gFY>BbiCl*Hi6yAtxVM5*3)jlaIT+NYi#?NM!^+Q`yU9qR31 z4i3a(;FwcP$70yewr;ye!^v@2zKV@&3il_>QmN2CnYkWh&nJ5`ez-HED7b3Q;(YsX zvgSd0rPy0J_Ss?55;n~iuk#@O{tfbU+W9tOsNjO^_1;ida``R}al=)gYv3Or| zE6Bc?<+`ap@ylQBPkzWe%68qG;K zHX~N6<2^}sK!Ca}JFZ+wjXt}jf3qz=0DQViS^4JVB5S&!`;ZoRkB@fAl78p*% zPt3uQm1mfhShf0Az|^qB@grUJmuCmDP8SmPTc;P_P0Z}z=)jhmRj29E#s$-tZNho8 z<$~2c`ufkP?+9~{FW#e=`-RwxMlsoZR{pl|igaKL31=kf%6MYD&pSI zS!=73imEC>(2VTYZ{I?#`x3>^W+Fj4z_}Tdhwb|OScOedku{oYj=c1n-Jh_6C~BpZPsi3XzEPp18=?>9+!PXg!+X zb-iYmSQm;(9$! z(si?+=^KY9(Fy*`nb;i4?Gtyl{{fbQqGJH&HaDOFCLYp8ZoS+#T#Ng)UMs@S% zN1JqCQd#d^k2+e5iWh*AFmZCB`bQvlcV{}}NDVt7TfUNwV28xjX!P9Ryj9$zUqMt< z_ld~Nuzp_*KEkM2+}4!%U8gi=ZyJs$8oaQ(O<;TkJn6+ZBfBN}Frem4L{JH<4Zk6= z;LD2k2aX4CURO^7z=;5fn^L~^0k+U{>uLYR9|Nmh+>Y~t+`Kaajx3xb*$s2=GcQ`E z1dt$JUdCfRsJ>ptV{_z+S~N@NH&LsqtCS|5B>#%YNFSfJcV~dP7rA+exRwt*PJn9yey262XQb|k@<`&ESx;vYaB|+taI>?nd7oIu!253s+%<_uECv}t-rgg3p%>UNHP%9G{_R< zd${`DEYP;*XZ2*oek6#xyQ=(1o}iLjhc?29_neYFwfmt@<$y`Q)`T(ano>VYkQSrl z_qPM7e87B~_Z;f1`oSq`d9u{B0g!5@&h+d9%?~b4kxK_FedWd_S4=aUjlzi2kKQb72=H zw*T12N9wOOQn=i-?rt_$Q|ZMPy}3rauhYl#;@cuWV?7wdMY#OcwN!(-QMnvS8YeW) zam|&FMF_rnztu|T^}gVrJ>v=aE~amD_0+IB-&)1a=Va1G)yJn+jx@8ektu>sXlR=z z=s{UGC^IUnz!yORRP#RXo4Q~{)rxRFAI?#aTUM!cThU-~AK|C~*f==uvl-xTvQbl0 zV|d~$!i7Qc4LI;5AcKo5qH8ZV68#m+%vMQ z9E3ul4uD^O|32++h&_(dQBfI5eo#OLvMDH-VKE5s@p!4JsO4|+q&I>k(b3Vj_44F@ z{NX*!>(cR^H|vOU!wd4gbct7_rWQAd6Co%zuD;rrBqF)8vQj7Ltvx_3pMB4I>SiG= zp;j0x%RdS}${Bm~L!~`O=!x+*fByWjJJN;*aA_JneSICR?}=V3g7nt8bfBQ=LAtuJ z$m}WQQY-<0+?fzAa~3{Dk7ame&IDfRQ#@-l!}5RuHvtPsp_Y&B=oMdQl^fer(T?0= zlq_~MEJnn}s=BLfNFKA|c&Q^opV&i|rDZpN>18g?PrGlM!`>Gc3#M-|{L2vqzJLFo zherDhuBP5NnUnN+B?9*IM5VAfF+3n{p%-U>9-2L#moRn71Yz(>4EHE|kB+FptMxZE zoPFiJe=vh;>qvo^N=b>K_E~oKm*WV-(>=rd?>QVw5qA|=2GxH541EH$M*X6ZLdcrb zzfHRzY|%bS31YuB+`CtQdn^zuzPahJKGORo&boV3p1a)M8wNRuhQjR-l52Di&YF`F z5*C_HY56}f`d)Z?N{o!97N6Ee;&pBQen~7-d_B`a2z;pbs$0D%7Pr|H>YJ!Ct3=y5 zhg3pmhhniXjF&}sl<<~4B8>>h$<6)#LGtPC(VKJQLb#utu9n?^HI1tSq&aM|vW(ek z(VzR@cGL-g6*6AiK%F*DGI;$+#2lXCh1 z1a**|F73BnkZ%rEQEKWf<;%I0g)+*~z9c*GZA4s33;1f}PT(th!uGT2z})SdjOXX| zxh66|jk2}thP{@uvgxhprN84&0o4&f!b!q?y>nnd;FG;MfT>f-&aMy$f}*RWzljr* z)E%#e8_2h7^V8c*(hH+wslQD*LlzR>>!SG(A52IeFR*IjJ{E2ku6}lS78t1TIFccF z;@e!$0H53UX58x4FOiJzfBm|zY9-TxD{G!60@jDPt^@xH;^;e^qJF|DN1huRe%9>> zSsVt7O%LwtoLeE&5uIDkrAo%ehf$phM5ObuG-e(RjX|4M;7k3Q!ZzAc;PI?GYhu$e z=`QBt5fEgit9xJtZ9aB?==TLbmNl*wl+F9kO7`w88#@9i8s`@;B)flw50giRDp|jz zKRezc<5Q-rCz$wQ1>;IcO#E{Q1#5@>KoHVVwG4%T{XYU_FW6OjVf2w$X=WOUK zMU;FOp2fG0{$?G?y%s2D_W7ZPeN6KW?x@-uK}$42 z$BQE2ok=58Ok@G4yYkPT+qGS)ZKgDpUj6_TaJhZrn8C29Bs;td$~@Jgrv%Uzn8!(& z3su!9+3E%g1A{+Y3p0&G!tiN00Z03z!4~JcQ7qoHY(uobeX${f0Fe`xKdNfOs@w7& zGuBrD*%KdO{gjT2W1?2y^9uW2BJrJxN=oLkD(pa-taty#;42cfQVF?%@kw2WiXJ_n z2e(@!pw}HBSKSUKgqN*(J#jEdIKb||egpvifiuwykIt+Rh_!pLC*Ze0g^=atH>h6L zK$4j(bL?Wv$e#3xfumzd-_GyfDlp7SQtkO}!;0Lj*Sm;f@Xt_ zeJ%YlU%$=|N&W5V*|#%E)(7rF*1j8&5hPOcb`jF#1Mt3Wz_TRb(DjXPK>HBH2XLZh;XPFQg62z);@i=XR4x<NJSii+Nm^%7h~Wb7R;HJyoOUb=`p z}}8%_fB2zfgC&tEI(ATecsnHW_Ycr zniOz3SiVA>Ok|ojba9kV@G0IE7L5-9z;Nj*D-`;irqC^RX z^mmr=V^Jz-V-d`17L6~f4z))^_(~OxnVwZhy7k(n3)E4V3CxvbIMe4#ALVV zbN!K8G`+w~8D6vV{n!z@7ny56_C2xjxPJdZnJVl)NKs-uieo^=Ex+luQGf>h1vi^E zaWJ^{?Odbq?R0@REHh9!v$|7YEV)XUkcNil_YNFM0r+51-771HYl!ZN3aci+Qtn&8 zMvBC@9AP{*J8EwsDZ!X(Q0yucm6v^6W3aiU_#-Vw+DZD$EG@PkJN`!c>U+0yu1{oD z;3FR;Szi{HyI{cBNCCbZ5J0h$egK-~bcp1$Vk z3g*kvR1gHYg(1_9Znf05JzBB0_XaP5Ad@d4)Bz3&{`O zgt99l9Me5&>KK9wU|-A*_l*+d4Gj&wD+oZ}*L$`^fgFW`+|m&xe)-D`s)zX+pqSmY z4vRwbaBz4-*%i6Trix0=tuj0%baCox7!&c6xYvG);Lpz600dTPm%5^dcfj>6=8VwL zp4&oa-9bm%jegzG*#`y@yg+HfyGI`$Ju@)PU0DTO9EQK(4+U!iQ^OY93Hz6BQtS4` zCMWZs?9N8qV3b%txVf{7x;UW;ia*L#VWeRq)X|fVZMhrZ$Uxe8eNadNy1!ssTU&i+ zO$ONVW#GN(@^s)d5fu&72M9M`1t!j1xdQ{b(^&HTG*Z76pG#0t+wwu+4p3530=B(m z2?+`1=A2jlBotP;rO@EvY2gGGT~*${=Jc!>VKLA+1nI8L1)e*a8skO!@eRBJ)fOAE zr_1O-6F}d<==E@yR-Wrp_vO&*Qoz}O!u+FZTl6ur_gQDnoxu+z*NB05+S*;blWG0@ z(RZ;Izbu1=Ss!GL3Cqbb0T%G-igzeWKnd9#P_Yl<$SAqEE$1{vHW={H36um%`xFN7 zEZgULdL+Pl0@gek?@a*g_Ok9T5n4d^!&YYuD57S zXdH&H08OVY>8RnMA@HeK-cxGB6fLv2Wkp1QidR_&gnae2PNF-zBMiQO=e8|;E7)~f zhJN|-C3gWi)x#=pGn@P0g$Y~bvme{msRKd5*KS+xOjUoAa?L7q-7JL-1f8jyM{r~g zqSLh5FuaBNP1$F80HA=!x)T7LYEi_%_DtQ)$;rv&>a(OA(2)lCSB6&tlyHM`FQQmc z6Pw;++l2pjPmG+&x7Wq~AXD1ADD%d8Ckc-_J`e)1OUIoL>*f7V9Qtd5QOA);Du|wN zUCfBRx3sWP@6eZ}8gcL4KQ=+*Dslm%Qhlz+etz{+5|6w9fDKSrQP#&!(cHWVcDCX! z2IXt7Dd4aINuGAP0=Q3CZvHNT&s}wn${rcfr)Fe~I6Crx7#wz4SrfB0$AeQYoaP~3 zIO~j})myfPGs}inusgbEi$N0ySX=@FJHhDK*w|0APGlCvWB6LslFAbo@=JY2zv+A1 zFJf@%mH{OLgIhTlieBLMi{;f-OVna#vSWlU5(J)@)I6o7qvMc~Vd#xkEXCN{zyg+t zj6_Jt*{8PBuml!EIqH_s@}kZy*Y4wfDi;(5Uc+ZTu!3h0G%GX2Dqd{paPag0*;+2s zKgGq{>V$@->-t#Z%$qcDlpioz`jLHJZ z$?s)bbvpq;PP0=#OeE*^kJTM!&-m_(RnOwR8kl2Zq8#rJoo7IHMzK2;Yy$dA)>yyE zEY5m(NOx~(>$W+E>DB#^Ws%7S@3K5pJ(;&HR=b3^S&?${(6G`Exb*l~%;8EY65xY1)iH+qUIbH2%yV>+ZjaM&)aR(dn0i} zKVk#nG9`2P(R4#9Z^MWQ&9gV2CsnB^`V7=@*dFB?tNcD3=n;V>#tT-RJ@W|{FJaqt z_-7%MMKnfqtn=^-0{x}T9M*(T^m|PSU~a8xyegm!gClI^GgU^;lKnnd!MY&*T|Do= zsA&oUJ$t+t>}oOTWqh-+q2Bx-P8#M~0->_@^8e84q5s`8f^yv-H^@LnKvSoCw!F0C zeqUiptT_-B`H2L&ym&(ow&XlA6dN%(pcvQojuz~{76jR-=<9ak*~gD+YS5Q>09y7N z26K(iA%Krw;x&2R6|crht;Z6e^1vhIiH^`QHXAbzh>Rs>yN7I5Q3zDxs)*7yg{#B= zJDU}@Um8ZzYJfY^k%%w1Xd{ft$PhtNY)_z)Ps`-JwbOMp8|qmvk!WbJDHx4Tl#Epw z5i1Jt)5$^a03KU|H!ttxvCTy8Q#<<%W`38O`|RkuhK`Q2csGl0S#BEmV28lRcR)~A z|9M!ht-a@@vWOfkgBNbzeh{tTd<$joSbYFteR|8IZxx?~h*K3kgeqv9pLEi9`!h{c za5}9szb`L`tn*(e`6uwP%1FxIco{1M$JP#*+8Fa9Hm~fRd;I0228RNyn?HGlQ3CAj z?7~|)(~+I02Km})uOKgVv_5!8)ROo!1v5WB@{TAW1fEHO#)CfsiwQ<%)Xj8MBOXgU zPiZfa0JI(nFo%yEMsv#pB8cx?fKu5qzP;o03h++=0~Xyv+Lg4ei&}L;2myE{ME+&d zyJ-07P>9ZkhTQ)bzCX0u{X9qg;@6unAgJnft1_!U5FhF+&G=qD^ya&@0PNu{>v!JP zxb^n|K#;qQy{VH))bgKGIFoC!Jy{PbUn^yG7#AHHs&sy`Ljc?cMa+IzSap~CpYD?G zvEI28`r!ki`NPqh87|d9wN@{#KYaMG{J0Xa>1^fm?ju6?g_m(U;_rTmjb+;h5(S=0 zh*T_ao6$*=c?7|n3fGUENodUuwf@6sV|@`I$50WNjRosw2Ukjs4vYi>pFJ~jm?s0qqP0f9Gfd zDEOy+l<(GgH@1m9IlWB`$T3LL0_EKHtiLF>hl@wc)L;dKiFw8`S1C%CHcRGvsC{t| zbJ0l`Ax9Flz1LiS-xFe`or4mGhK8Odf|9YYU7Qg=F3JQJ-I85QY$|Np1x}eVOD=Cn zOqqtvQ!u|`nVuoctg52DEn*hG*5JJt7007vIX0}b^f6ac)bmfg-*6`$%LCcM=7Aif zRfl|mNRE#&-u-e{^{i+h*FabY*%?*J=Vi|&z34{ z%C)H=YZSW>`9*6B)QZbTP>m&vLCSaa{H5AQ!?XDkA9G9qH7)HY^C{2PmfKBEew$%D zD(_T?`31DC`gqKxOa0+Hyoiv;Dm{l7)u^rAW{T#+By?JR@ciEmeuz8~5jnTObos#v z<~8#PZ|szIY~0N4zp^tlr3m60<-qzpQb@g6@&Ve0>)?E^jxQaPycr=7sqKCkk1^<0h;Y&_ZStpK7a-!xd?PExtoIAyv&T3cOhx2yI` zC2aj=-A6mgx_hOuDd|y7K-2DC5wky2BnW{e^6QKePY2h$SoQ@?H|2Z}hza}O3+u^u zD;Hc8f$21`wiwQS8CHzPm7tGjN0DW4C3m)}cNqUiJCqp=CFgmuq?WS^If{$jbMJ*% z11JV-I9Hou3wtFtm_enMx%JToq`0$=?}4-`JoktF2}A{RKx`*4Z(BGr4y1u`-fnKc z)}a7Ev5Sl-^TLHvFi&M~R&mn%B%9T`P&4A=3MO#n|0nVC$NJ26O!#PPoU*1+qcQ(E z`^2*(9OS@*&yT^TE@fLxT+2Yo#j3<(h_|zyG9HHJ;-SWF$N5R?w*ow3r8n(n%h9)0 zV(%JkHbM)8XmNp@Wd=xXyRgUNNo(HPjYC$(n%KlvC@c(G`3A~QlyiM)Jnn*E)u#vL zyOqUz7P|~tFBgxK&;!}n_eG|-0r=jXw4c2v>nM5rDpv7hB2$AX&Zoq@|4^qZ@0dH+ zpWW0CfEZ~r7i)_Q4^#79kx6T;d-a2FVcf2rsbcu_fUjxA#Um>&{^aA*5u6u}o2hYI| zYNRTp6pHk`pc9|aZY{IZ^1TM|=P+Uj5(P&B@8ZEd~LbVDWCs5f09-q`b| z@CHNN=;W{)lwx&_^E4}_f=8`{L6-xPBL5oK`av;H!SXs7&L|m}dIwsNI9lQVDmKB9 zjEdS0Q?=@F^G1K~etuD#HrQ-LH0JOa`Pu$8fs)V=`pV5tXz@IE*?{-}x&IDY8ti_m zD|s~RuZJ}=X_Cwo$BYNFc4o+4Ka4>7I`yaCEX%*!=-OdyfFx>KI{&!5{25e~7wQKU z1GiF-et2&o-2{==g^9LtJX=G650p`_)Z(#gid#EtU1PFV1essQ%|TNbdLabuZkWi8 z`T`>yU=alvWrJVqz2=I#z5K&D<9+$GBM=k>h;`|F;~jb0J|0e~bd2`9Bo5TO}>Ew!ou2btgU?mUfq>H2<=9kZF+7Q?}(1+@0GqZ za7HdO%YE`5FQ)M&qby)(Fi8?7Umv^iklbT$jv2xzst+MF{!h9;lQt`tjgB84E}S><_B3e&^Os zqDalQCe69Z80cfWA5o z*zYV&JHXzcK90N4Q7ffeKrCVG6_RvFAOYUVI-mV?S&8^%89_3M3|Q$K_FXA$*nQ~X z@gQfJm7e|zfZlNiBih>^%AL-*7p4cXfLK?D$zLS!IX{7{>}&!cI5_yu{Ws)8!^1Ht zDMfEVpSwIf5jBp}i+!vVgh6ti<8Za|!fAGT1(?*y_TqMi1(>LC&*$$| zWM@~F`*(3&!$B#h4tEv^98mx8cyZf(Z9r9B{R&{wmnh`3S&+Xu+wFTXQ|C_2!a@N+ znVlN6lY^5JD!gCMScD=uTi`Zx5BA99cXSg`2nCBORGgh*aBO zxUJCX@OKY)Z*J*8L02BNn-Xzv2`>ksQrP=kT3~-Ngz;9B%6>*9qr3tlmE^Fq=y0_t z`P!Um{m9Wo!rXTQr%1+)gVxwv0<_4_B^&ey?g|%2!|in`_>KGwx`8c5t3L-n`urf~ z{vki%-C#_JuIbD7x4^xYqD^gZ^}7u*u)Ma`;UMv7izVo?*<{vpyw@OIw%P>W+uNJf zeQYYa^Fy}$%_02T$v@_U`dR7RTKT+uxeRPheJ2&rDCe9m6|hNLZwksEL@~9s5)iqZ zjqvHGE12#zYn%c)?)bA)9%3Hr){ZucLBIgMPexV_0g=E)xh)|5CHr4TY zW&YJ00LtI>`dugA3TnXp%2VBO*16;*jNCu7S*?lQ{nGej?(9oiclol~%@KYtV7_iG zq796hUmky6zAqi>)H22WcPgbEtsTSTJsM(KvU_p$*s+0YnyE^k1OQw z_C@_pLEu$HtULfRDb6i(ur|7wQcv@<1@^5IoW zcb;x8>2vgUoQ6Ak%qPGh=}Gx75E@EVb1&VbG1ywL4gbNp*M4mJ=u$IGR|%|d!mJoJ z2{Q9+$JmrM>JQ{>tG`}ddoZm5+uI<2XQ2zk?zZ`L(Ull;E1MF0rPQ`5^btA-_8Q4z{` zKD4zK=QiIkRIrjS(kPl^JogG*aZNX-%eWc@CB9l$mRRV98h@pzXuX!+xMN!{+wJNo zROoNS^cT(st$?ZPz}=lRsf9Z5+*|`&vct#*QJ|JjTIuICK2Yw_Zy((FChIp+V0Pp% zUElv;wON$V$d7f#pWQ2CH`5NwsmfK)1M~I^?2nFLa;F4twgd{lstx*xp?l$Iv*mfL z8B9>Ejlp2HTMyQ|xnX{QUUv6%JH_aI@=Obbg(nY9efKvgpe3NOQw++#P z{QyyE7AMz4cxg`C$XIDjY8+xR>}P6SIe32xKrB}mrJ_DB^+}tD1|cA9))?BgyCrlwzSoN%aAiuWqhn-fD1&!JGV&xR z_l!zO;Jmeey|d#OKb!bB%o(k~Jy!D4nvf}M;vI@nOoUGxi@@@@YA>wactEyTCNj`@ zWUGf7zrFUSuWSzYav`)-#^YV|$mH<7ofbL{&yxqfb?1(D3}v7{aE5*ULAU}{i^rYE zBqRhk2b^=m|zq+gBcJ4)FK=K5G2&;@tipbTMwOo>iZfjq`h4e9AL-tP_(iTrvSg zCf?Ra-BoTbuxEAu=xkP9-5HN-3hzEWI@@wwO2~n8yXP;WL?D?I=rNB!FBwaIyjONq z5o2G$4oyFS)ZA&;PhSU!l)73uc|E27^W5Oz&(gw&E>A-HXn{l#^HMv3?dT;I>e~Yu z-IubGNtRuL6a*@0s9v^O%qy}wcd~*YD-JwF88%k0dv?NABhZJji;evJbj1U)OP3xd z8W(uy>^jqzM@a!;bLDeQ+0TrPxpiifPQ$P3No1ycbu!)8(@vN3G*{qot1U#CFqT~n zs;YXR2Vt4kxu%}Ke~AH=$B(mea(=G_#>B)tahG8mefH}4hs9VLa`vyWv4lV^41Bqe z&8(!W%RU8n7U8K&A-h2eFv<7;s;a?S8dv*Wi}#70zTEFq-^C5Wi2#MkX2$NTI>0+Q zz6WZL%8=iyL`MGo+w%7EH0Rwr+v@n&;Qau|{7HUem&h9mpwDvHl8-{zYuW2VU=2S4 z=6B>atw!i8%;(9K{s2y}eCG51Ktsov7MnZp5^R_#fY~#SJ1UJ6PlLmzofT zuHCZ=jt{e)SRULFNCcnlooI^m>+)o#-~u=+a7$^&PSLgCFFR3Ih5+~-aH5*%%nWI2 z=7k+m2b9eENrequ4Gk+L_@$*^e)=5THd7}CRm{u1_sk3$E@p*Z z)jsnOl{F5@x3}9jue2#*FxlKqeAVbfy)z9T-}WmTnHB1-o^Y{>e_6TJvrTkce`H*2Afun&ncLG|7-hLzSpY!WcEmi zuUQ|!VlXX>leUyZz}fXiV-LDz=AWnE0u;9i09bVkIYQh2PDT=_!X_zsdpJEgZ(=K2 z=Ls!)8~ggK?A1v{9Jx-@2dIPc~HYF)MmoCdH zn8&50;L&^j^X#AHRHFt4JtEg)@>PR3j{sk{1*|X7+RbX6jH6-|0n~2cz=x@c_kq|G<2SItYpt3Crn8Wt)cT;Z_{W-$yLXYkQlo`Qv)LC8b2DT0!<418EpEAkS0vRqlWDRPv3+u0br{Ab= z!q>RBtkWQ4-sp^(ylp~X11v6!^t0UJi{=3yZ`xeaTa%)Y$4DV_LhV6*R1tlKJfJdi z_vzV`yVC}d(ajeB4@oUQR$epnsYU0My@g#iD+YF1kF=QBxBTe7hl+#yTnP&8K}g}p z4Y<9YU%LiyaBvVUmJ!gzmA|_mXa4m@9QcAPPT{LCXa@ywDryYBxVQnJq^(UcFoob0 zV;;9<9g47i|6KnF99W0RT8?3b7XSOv-tS9IL?f9J9~TAu|SrM4RAvk zeo0HTY&?Z3zZy=QF^E_eUzJa!WPNaXt|C4?mZGHXR3X#)KP#dLh2wY_{?Dde((m;M zsCADV_$KL`UclFv@b&DVk7Hp@mH^l*og*%|0|cdZgitduZT~9H$|6h{9sPQ;@+HR= z2>OC(LA_8yYxuR~ymKv3&|a(`6A>tXxjx%0+G4W>VQt(a?$ zqKhZfP-i&Rty{sVsZ7OYO~!+#meXW-Q<2NQTo?2^(SeJZ$H!>@sJG)08BJ@zuTz%R zjdq&RC1=FMD-qnO|LI~kku;iQynqE%pUU$?X-2UqJDE`kzpBsi1F-?pMayWl=y>4Y z30l^_ULy)WJB|e2;c!M(WNc9Lq$<>B0<=Qz!)|WqpR9to&NKxx6&>B@PyTx6l)fwP?T1b}v8+T+tuCt*E4zBC1YI>5yW3AF;K_rbWhFtHy9pEmq* z+_gg(2h;QpfG-CYI)48A3C#0ark)1J`{WW5xZL&IXb#GL=h9pf|1HJoVf4OBDzAtd zv`X?EI{3y&CT;d;x9#m-(otjssy$)}HHDN|3=RPpti5HScg;LL zDJk)#i#=YUup8WQW?aD>r{KZ^&ZA@&?LDwuI^Vew;Q28H?J_ITzs3t>G2x|XO|?IO z5Cy&u^&q{7tERlHk3EyUVo#0N5wrOt%FizV(c8QGIyq^E1m70%|VKMNmPTXRiS*@yglCI)2Y<AkWs%H?3?dnx$4Vt;??BuLw#m~>b+;{c4PQ-{k=j=eQJh{?$mY@`?v-$NH8sDo@ z#ukP}TDvUrx@LSj30``5vxz!cwRA$Lf>Q6kCLYG>zhyzY#+;ZRlueeI_Y0)Cm5{F= zt?1x#z4`o%@$&r4d_?Nt@-b5C9w|ocaG7s@ouGWuPCN{Bf6D3`*l{KTyz|H2U}WM% zlo{94DjlA-7?HI8*TYIRGKbnxE~vf%Kt1?`0Q4$GN4D#uCST*0C`A{gyQD|akKs-QV&Ml$h^`Rxr3rkO6;5O*?Z7K1=fv zp@?Uw^?GXYqK8I8oTtQjWdl9dl=XYyp6;}s%2Eljthw$QAy(ogc zYg9#};akGyi6+I*BbppTDA1U85@5UE@VCI1ds~gOK%2dnd(lFq`=3JVOdlg zL%n;0CGIvDOmY773RU(TCU<+wtR6|> zQcuCU=jSczB&`>yE0*(_ZMFYIseU9O{)8E6)B~3l2!KibWisnhA06f;R;04IJLx5o z2=F`J4Bp(dOO^2~j8WqoJ|hhpw%ICoI5yUU!5Y6Vvi?DI|G>he2Mcd80-sf?I&sdR z$^cxE1Cme7#qo4x*QqCCV6zKBg0?)!zbo{@w%i0#Ng%WS*N`<163z{U$5)uAUR}WH z2d*GZwRe?OjT@H>ZOXQ`gk?L|;)M?zS&G>G2VqDtj>5TLGmT6R6F;4FlHRm`q6MO;(bCe=;2jsMpLyNL z-`yY3y5YCgAYa>QYCBg(La)N2rr&XZtg0BhEmmS$|tGJ_LGq2dGVU zfKr-eOy-HBz82K1Hm>>1#i&WLt*qD#J}@#dJ~vYJrZe2o-GN$nxbwGEX`6{4-N@Kj zO*mQ$$6zsZ^qoWS0qw1Xgr5a+VH9h2;*PHWwZHuow{_E}RMN_|`ltTl9j_g~j@{hi zm@L$`rfa`Asz_L`sG#g|V@DX?TK&ITKP8UG}6@&mFqH`#9$KtZp;_{QvO-^xzz@_?5`J}_Wlzy|@#1JNj zru2Z()WjsB^5pP|j*fR-3HSdT4t7ZzV&mg!D_|HmJq?X;=%gn)<26ajd+78d2;<0~ zSFSt+TxdypmuOThl+>{Pom1S7*?a;5MZL;9Aqp`KEMB__FT=vZV_itkEdH?K=wM&Gv^LW`cuw(ybjw$Njmsx z)r$1>75)B^N|@U6&+r%x)sXl6P}MN}DN}#xZS%g17I`c8CNy$yHiDIMdH(jRd_OFg zZOUfn_yHQ3RH+dK9zD4NI7YWr=0kxT8E|m}a6DB+fM=F1=I1O_EG~vahCq0 zME5-B&JVCgMP{mPsE2@(t~%G}IXU9zr_UT5iup|+ItyV_HQG0z6i(jW$ znXYGqLUUBX;aoS_wYh3P2I4fq+woz!8a`Fd@s9+AEhMshY)i zkao{El(ob_(UZjQ>@R(P6x28Ddq4~2ZY|Pz(Q+-XFKz=>^0?18n$Ixi)gFBROBd4c zU|~_=vjDDwDF+GP?{{1N4sMo0d`RHSP*}zo4bn95rEb%mp_7p*ggC~xksp8}iTnW3 zv&M$rxS{(I-M%G@tRnIou4YB(+|K-G#xRZaahX7D_0{l zmwii?pk!!y$t-#aiTO6Xgm#}>1O2wabo`Mto+RW`W_@8{8-WvK)8Ucfr`_n?oZrq8 zDO_d-6e&RLGWdFe`mY zDe==xNcHKQ@ssucI-D65@N`NpPsoFc!VqsO+Z-ge5&=hv6qeWGkr{Hr%EY7|#qh?l zKnlsnpE>UKd~v2=QJc!UZZHScHsgvQcgY?=K>$sc#xNpd4i)y(7it}Z7>};>i%Ay+ z0^*QQJ?h{hQeccfkmJeIr?hV?>34aUH)rB#iXat6)q}@`(}NO-EK8o znE38aTgR0Eft{eJg9GSxM)!-6zj=)K`1mZ*Utg%4*82(4(HYTmD^QDPAV`!T^V^=> z<0S^vIJR#OGOp<)ynf2* z=@NP9*3k%(ApIR#aQ(0^{F%LC$VD(ua?|Vd2?vQJvk>er4t*nog-X-OgL>>QkZQDk z={Sl~D%Lq+^t17~bkYj+fJ*AQo3nd<-DIV7X}gEUgR;$HO>w1=2z$I0ZUY!=)ngjd z>xOvP^$Gl4}Qa8hl_Rs?-+X&Km-kw5(%^lPl`ndyCICwtf zMbCaI86A?KqXo&7{^Rf<@W_J#(EI3)&?vcJN>7&4eR61g*Su*-R?Loi{V7Al;tb)q z8(Z<^>|tQL1YZ@l?XK6@hfX?-@y8=Ob*AHAYp^7-ffvs=tq1uro6H%n>Ud02`tvqy zbobCIBd|Q^CA=p1`_RU_k?qJzMU$lEB7H2Rg2C`Fp~>O+EBs%71`qiI>Hni1&BRJ7 zXBCqU^{+ld%{I{KjnE(U3tRxl#Xe2k{0CO3R?kRx0cxgNY_&_bL*-@wP*>GfDSc@1 G;r{}biWRZ| delta 16300 zcmbumby!s2_cnZJM3InEViW|VIipYQj2-uL%j&-2&grJghU)ZY87z1Dr-Yn`)P;`SWkXf9&X(^76}5^&`- z-LAvS%Z;geDfJ3(OQ-W*>M&8jLEF`>H-81`lT)RLdS&Q^RK)_9Z}+Jz7?yBah|QU_ zPUR!vuR3v4xHH^yj3UEtYqj)C&1(2~&IA4H*By{IDSe0U(cf2g?x~}GaAh0Dv@a4> z6@KDiit3%XelIn;7*6Av(vZY3uL%a#BsqWSp>`EGxE@l2IGq6j{jFTFPp|q-NtOaj z?LXKxNfxq4%*em4G+>Jev$1a*2%c1~82m1pl69wZn(_Asy7|h_*KgeEcxkWDUvg8! z0GsXBWNtTM{J2o)ja6{vm@7NwXfleEop$ z!J>4`v0@|F9!O4^#xSzk@Clu$_*mS>Y5y0or)vO50@n>&Zh}YQop15JYR^S`B*jxS z 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 hME8l{o+C6toxlJ4%7maa{A$7bKfd(Qdt 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 literal 14556 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 delta 32452 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 From 15fd8b43c8ed969017d708bb2a415b16222c351c Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Mon, 24 Jun 2024 22:50:17 -0500 Subject: [PATCH 08/40] attachment fix? --- code/modules/projectiles/gun_attachables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 2fcc8765986..ec64a5b88ce 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3411,7 +3411,7 @@ Defined in conflicts.dm of the #defines folder. name = "integral bipod" desc = "An integral bipod for the M41AE2 Heavy Pulse Rifle." icon_state = "bipod" - attach_icon = "bipod_integ" + attach_icon = "integ_bipod_a" slot = "under" size_mod = 0 melee_mod = 0 From 6638733bf7a54998697553eff5e1f530e3ccd7c0 Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Mon, 24 Jun 2024 23:28:59 -0500 Subject: [PATCH 09/40] ok working now --- code/modules/projectiles/guns/rifles.dm | 2 +- icons/obj/items/weapons/guns/attachments.dmi | Bin 37883 -> 37884 bytes .../items/weapons/guns/attachments/under.dmi | Bin 14600 -> 14616 bytes 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index d80b7852540..5a90534e448 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1260,7 +1260,7 @@ start_automatic = TRUE /obj/item/weapon/gun/rifle/lmg/set_gun_attachment_offsets() - attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 23, "under_x" = 23, "under_y" = 12, "stock_x" = 24, "stock_y" = 12) + attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 23, "under_x" = 26, "under_y" = 16, "stock_x" = 24, "stock_y" = 13) /obj/item/weapon/gun/rifle/lmg/set_gun_config_values() diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi index c473cd5d228e4c7017899e265b69c22aa89a72b1..b45e65ff3761f9d34e288cfd8c397cf5cd7d6ae7 100644 GIT binary patch delta 488 zcmV+o{|EC z^tBXio#-qQo1XRo&N~tm5I54`rUtDRqdxVjc3qX1LOg-Yl3RPC$b%kU2bT$Rve6qW^2XK zci={~(xEY&q$tVU70QAU;I@?+8YswRYe3MjAWK&GrFFnnUk`>ZD}pRpVWd!>rQkknlu33R4<$)L03KqZlcryTLN}C~|ClbfdQYQ)u%}KN; z(H)64xnl+Ie6WT%9h#9i$EZ8Uh@WHB3mNn&LE|}*_e8!U@_z;hpHvjp?7fZ0mqayt zZ}Y(dcyogumLnQzCI5G4{;uJ`g3-Rdq_hx!SfHbf(cfqF e;M2Z8Ci90`GW&i%_ziB8y87FHO|7#o1MU@7J{eAili}n&6$J+A z>nPeb(OD!mJ>3JGcO+VnXbQ_oo{x03U`4zhzqN>WY+rxQlKHp!_xZ!(iKxNHYD3eS zll&>M=?gwG*j}6v_^2HvG^5~}cN>Bj+&?VlUmkB4^VzmEp0hJ%JR#kz9)IvSdo?M* zOA>Q6;V_#U=2qwn6LSIeyZ^ST+D~a3&!D#k$m3<#1l54gV>=kT*wAdPI2aYp){3KV zz>R99Lt{8eQIfeUlm#QeZ7VZ0P>{>kfS_SPmaOng>ws&%9t>Sn1X;4eNTE7IqjB%r zA_;w90ng#JmGIM*$x|;1!hi1#-WnhidbXu?5}eVpzPui16!;p1nH#5M6zN4u^sTyt zefE9{gY+zEb{;*dknZWFGFOFMvjR)X123!Nt({_j{(Iw|>*!eW|lYB-yEFzg%rO~Zi&qkVlzX(9fwKt~y)zs>5w dr+t4+<`1)E_WgeF8w%CAdaC1z?6WTg&5qyY>UIDC diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index f879dbef16eb72ae270ac9e35b1542bde6f295b8..b6afc209d81602e85c5882b018f88d7d683a1a57 100644 GIT binary patch delta 13462 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 BT9W_( From 1dc7ee0cbf07d4fbc9f8ceeea5296cbb132709de Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Tue, 25 Jun 2024 12:33:30 -0500 Subject: [PATCH 10/40] commonalizes the sprites and also improves the sprite. thanks dong!!! --- icons/obj/items/weapons/guns/attachments.dmi | Bin 37884 -> 37909 bytes .../items/weapons/guns/attachments/under.dmi | Bin 14616 -> 14631 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items/weapons/guns/attachments.dmi b/icons/obj/items/weapons/guns/attachments.dmi index b45e65ff3761f9d34e288cfd8c397cf5cd7d6ae7..e3293abb7de068db89e988e52f9b920a141ab87a 100644 GIT binary patch delta 16760 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 VznN-g-xh%WG*xv}itkvx`X4n(-46f& delta 16735 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 delta 13562 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 From bf2a6bbc0fb97a33e95f4dabe005789dad4e0fbd Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Sun, 7 Jul 2024 20:22:25 -0500 Subject: [PATCH 11/40] Emergenvy nerf lmao --- code/modules/projectiles/guns/rifles.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 5a90534e448..b868b608d12 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1268,13 +1268,13 @@ set_fire_delay(FIRE_DELAY_TIER_11) set_burst_amount(BURST_AMOUNT_TIER_4) set_burst_delay(FIRE_DELAY_TIER_11) - fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_3 - fa_max_scatter = SCATTER_AMOUNT_TIER_4 + fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 + fa_max_scatter = SCATTER_AMOUNT_TIER_2 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_7 + scatter = SCATTER_AMOUNT_TIER_6 burst_scatter_mult = -SCATTER_AMOUNT_TIER_7 - scatter_unwielded = SCATTER_AMOUNT_TIER_2 + scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT recoil_unwielded = RECOIL_AMOUNT_TIER_4 From 0217d8e8cb0fa095de8c2e7d824a233c82beaa2f Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Sun, 7 Jul 2024 20:48:47 -0500 Subject: [PATCH 12/40] Refactors the machinegun box to be with all the other machineguns. It's not an ideal fix but it's... a fix? --- code/datums/emergency_calls/supplies.dm | 4 +-- code/datums/supply_packs/ammo.dm | 10 +++---- .../colonialmarines/whiskey_outpost.dm | 8 ++--- .../vending/vendor_types/requisitions.dm | 4 +-- code/game/objects/items/storage/pouch.dm | 2 +- code/modules/cm_marines/equipment/guncases.dm | 8 ++--- .../modules/cm_marines/equipment/kit_boxes.dm | 4 +-- code/modules/gear_presets/other.dm | 6 ++-- code/modules/projectiles/guns/rifles.dm | 2 +- code/modules/projectiles/magazines/misc.dm | 30 +++++++++++++++++++ code/modules/projectiles/magazines/rifles.dm | 30 ------------------- .../vehicles/interior/interactable/vendors.dm | 4 +-- .../LV522_Chances_Claim.dmm | 2 +- 13 files changed, 57 insertions(+), 57 deletions(-) diff --git a/code/datums/emergency_calls/supplies.dm b/code/datums/emergency_calls/supplies.dm index e562680eca4..9df32de234d 100644 --- a/code/datums/emergency_calls/supplies.dm +++ b/code/datums/emergency_calls/supplies.dm @@ -74,8 +74,8 @@ new /obj/item/attachable/stock/tactical(W) if(6) new /obj/item/weapon/gun/rifle/lmg(W) - new /obj/item/ammo_magazine/rifle/lmg(W) - new /obj/item/ammo_magazine/rifle/lmg(W) + new /obj/item/ammo_magazine/hpr_box(W) + new /obj/item/ammo_magazine/hpr_box(W) new /obj/item/attachable/verticalgrip (W) if(7) new /obj/item/weapon/gun/rifle/l42a(W) diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm index 164511c25cc..8b5462dfbdc 100644 --- a/code/datums/supply_packs/ammo.dm +++ b/code/datums/supply_packs/ammo.dm @@ -276,8 +276,8 @@ /datum/supply_packs/ammo_hpr contains = list( - /obj/item/ammo_magazine/rifle/lmg, - /obj/item/ammo_magazine/rifle/lmg, + /obj/item/ammo_magazine/hpr_box, + /obj/item/ammo_magazine/hpr_box, ) name = "M41AE2 HPR Magazines crate (HPR ammo box x2)" cost = 20 @@ -287,8 +287,8 @@ /datum/supply_packs/ammo_hpr_holo contains = list( - /obj/item/ammo_magazine/rifle/lmg/holo_target, - /obj/item/ammo_magazine/rifle/lmg/holo_target, + /obj/item/ammo_magazine/hpr_box/holo_target, + /obj/item/ammo_magazine/hpr_box/holo_target, ) name = "M41AE2 HPR Holo-Target Magazines crate (HPR HT ammo box x2)" cost = 30 @@ -412,7 +412,7 @@ /obj/item/ammo_magazine/rifle/m41aMK1, /obj/item/ammo_magazine/rifle/m41aMK1/ap, /obj/item/ammo_magazine/rifle/m4ra, - /obj/item/ammo_magazine/rifle/lmg, + /obj/item/ammo_magazine/hpr_box, /obj/item/ammo_magazine/pistol, /obj/item/ammo_magazine/pistol, /obj/item/ammo_magazine/pistol, diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm index d8907911e94..225c6c684e1 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm @@ -457,10 +457,10 @@ if(80 to 82) crate = new /obj/structure/closet/crate/ammo(T) choosemax = rand(2, 3) - randomitems = list(/obj/item/ammo_magazine/rifle/lmg/holo_target, - /obj/item/ammo_magazine/rifle/lmg/holo_target, - /obj/item/ammo_magazine/rifle/lmg, - /obj/item/ammo_magazine/rifle/lmg, + randomitems = list(/obj/item/ammo_magazine/hpr_box/holo_target, + /obj/item/ammo_magazine/hpr_box/holo_target, + /obj/item/ammo_magazine/hpr_box, + /obj/item/ammo_magazine/hpr_box, ) if(83 to 86) diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index 3591a7caecf..0298abf8bb2 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -242,13 +242,13 @@ list("M44 Heavy Speed Loader (.44)", round(scale * 10.5), /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), list("M44 Marksman Speed Loader (.44)", round(scale * 5.7), /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), list("M4A3 HP Magazine (9mm)", round(scale * 2), /obj/item/ammo_magazine/pistol/hp, VENDOR_ITEM_REGULAR), - list("M41AE2 Holo Target Rounds (10x24mm)", round(scale * 2), /obj/item/ammo_magazine/rifle/lmg/holo_target, VENDOR_ITEM_REGULAR), + list("M41AE2 Holo Target Rounds (10x24mm)", round(scale * 2), /obj/item/ammo_magazine/hpr_box/holo_target, VENDOR_ITEM_REGULAR), list("RESTRICTED FIREARM AMMUNITION", -1, null, null), list("VP78 Magazine", round(scale * 11.2), /obj/item/ammo_magazine/pistol/vp78, VENDOR_ITEM_REGULAR), list("SU-6 Smartpistol Magazine (.45)", round(scale * 12,8), /obj/item/ammo_magazine/pistol/smart, VENDOR_ITEM_REGULAR), list("M240 Incinerator Tank", round(scale * 3), /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), - list("M41AE2 Box Magazine (10x24mm)", round(scale * 3), /obj/item/ammo_magazine/rifle/lmg, VENDOR_ITEM_REGULAR), + list("M41AE2 Box Magazine (10x24mm)", round(scale * 3), /obj/item/ammo_magazine/hpr_box, VENDOR_ITEM_REGULAR), list("M41A MK1 Magazine (10x24mm)", round(scale * 4.5), /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), list("M41A MK1 AP Magazine (10x24mm)", round(scale * 2), /obj/item/ammo_magazine/rifle/m41aMK1/ap, VENDOR_ITEM_REGULAR), list("M56D Drum Magazine", round(scale * 2), /obj/item/ammo_magazine/m56d, VENDOR_ITEM_REGULAR), diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm index 36149138a6e..3f32e51568f 100644 --- a/code/game/objects/items/storage/pouch.dm +++ b/code/game/objects/items/storage/pouch.dm @@ -497,7 +497,7 @@ /obj/item/storage/pouch/magazine/large/pmc_lmg/fill_preset_inventory() for(var/i = 1 to storage_slots) - new /obj/item/ammo_magazine/rifle/lmg(src) + new /obj/item/ammo_magazine/hpr_box(src) /obj/item/storage/pouch/magazine/large/pmc_sniper/fill_preset_inventory() for(var/i = 1 to storage_slots) diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 61c20e8faa3..007f985fbbd 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -60,13 +60,13 @@ name = "\improper M41AE2 heavy pulse rifle case" desc = "A plastic hard weapon case containing the M41AE2 Heavy Pulse Rifle and three magazines." storage_slots = 4 - can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg) + can_hold = list(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/hpr_box) /obj/item/storage/box/guncase/lmg/fill_preset_inventory() new /obj/item/weapon/gun/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg(src) + new /obj/item/ammo_magazine/hpr_box(src) + new /obj/item/ammo_magazine/hpr_box(src) + new /obj/item/ammo_magazine/hpr_box(src) //------------ /obj/item/storage/box/guncase/m41aMK1 diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index 6058ae93eca..944f5e41e37 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -384,8 +384,8 @@ /obj/item/storage/box/kit/heavy_support/fill_preset_inventory() new /obj/item/weapon/gun/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg(src) - new /obj/item/ammo_magazine/rifle/lmg/holo_target(src) + new /obj/item/ammo_magazine/hpr_box(src) + new /obj/item/ammo_magazine/hpr_box/holo_target(src) new /obj/item/attachable/bipod(src) new /obj/item/stack/folding_barricade/three(src) new /obj/item/clothing/glasses/welding(src) diff --git a/code/modules/gear_presets/other.dm b/code/modules/gear_presets/other.dm index 0308c8d9e3c..d33f4482cfd 100644 --- a/code/modules/gear_presets/other.dm +++ b/code/modules/gear_presets/other.dm @@ -95,9 +95,9 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) spawn_merc_weapon(new_human,1,6) - spawn_weapon(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg, new_human, 0, 5) //HPR mini-spec - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/holo_target, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/holo_target, WEAR_IN_BACK) + spawn_weapon(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/hpr_box, new_human, 0, 5) //HPR mini-spec + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/holo_target, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/holo_target, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/explosive/C4, WEAR_R_STORE) /datum/equipment_preset/other/freelancer/standard/proc/load_freelancer_shotgunner(mob/living/carbon/human/new_human) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index b868b608d12..f4860287faf 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1240,7 +1240,7 @@ unload_sound = 'sound/weapons/handling/hpr_unload.ogg' fire_sound = "gun_pulse" aim_slowdown = SLOWDOWN_ADS_LMG - current_mag = /obj/item/ammo_magazine/rifle/lmg + current_mag = /obj/item/ammo_magazine/hpr_box attachable_allowed = list( /obj/item/attachable/suppressor, /obj/item/attachable/reddot, diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 87568c95321..3c15e83f1f5 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -16,6 +16,36 @@ gun_type = /obj/item/weapon/gun/minigun w_class = SIZE_MEDIUM +//------------------------------------------------------- +//M41AE2 HEAVY PULSE RIFLE + +/obj/item/ammo_magazine/hpr_box + name = "\improper M41AE2 ammo box (10x24mm)" + desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle." + icon_state = "m41ae2" + max_rounds = 300 + gun_type = /obj/item/weapon/gun/rifle/lmg + flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER + ammo_band_icon = "+m41ae2_band" + ammo_band_icon_empty = "+m41ae2_band_e" + w_class = SIZE_MEDIUM + reload_delay = 5 + +/obj/item/ammo_magazine/hpr_box/holo_target + name = "\improper M41AE2 ammo box (10x24mm holo-target)" + desc = "A semi-rectangular box of holo-target rounds for the M41AE2 Heavy Pulse Rifle." + default_ammo = /datum/ammo/bullet/rifle/holo_target + max_rounds = 300 + ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING + +/obj/item/ammo_magazine/hpr_box/heap + name = "\improper M41AE2 HEAP ammo box (10x24mm)" + desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle. This one contains the standard Armor-Piercing explosive tipped round of the USCM." + default_ammo = /datum/ammo/bullet/rifle/heap + max_rounds = 300 + gun_type = /obj/item/weapon/gun/rifle/lmg + ammo_band_color = AMMO_BAND_COLOR_HEAP + //M60 /obj/item/ammo_magazine/m60 diff --git a/code/modules/projectiles/magazines/rifles.dm b/code/modules/projectiles/magazines/rifles.dm index 1515bb89850..d18471c47fe 100644 --- a/code/modules/projectiles/magazines/rifles.dm +++ b/code/modules/projectiles/magazines/rifles.dm @@ -294,36 +294,6 @@ gun_type = /obj/item/weapon/gun/rifle/ar10 w_class = SIZE_MEDIUM -//------------------------------------------------------- -//M41AE2 HEAVY PULSE RIFLE - -/obj/item/ammo_magazine/rifle/lmg - name = "\improper M41AE2 ammo box (10x24mm)" - desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle." - icon_state = "m41ae2" - max_rounds = 300 - gun_type = /obj/item/weapon/gun/rifle/lmg - flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER - ammo_band_icon = "+m41ae2_band" - ammo_band_icon_empty = "+m41ae2_band_e" - w_class = SIZE_MEDIUM - reload_delay = 5 - -/obj/item/ammo_magazine/rifle/lmg/holo_target - name = "\improper M41AE2 ammo box (10x24mm holo-target)" - desc = "A semi-rectangular box of holo-target rounds for the M41AE2 Heavy Pulse Rifle." - default_ammo = /datum/ammo/bullet/rifle/holo_target - max_rounds = 300 - ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING - -/obj/item/ammo_magazine/rifle/lmg/heap - name = "\improper M41AE2 HEAP ammo box (10x24mm)" - desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle. This one contains the standard Armor-Piercing explosive tipped round of the USCM." - default_ammo = /datum/ammo/bullet/rifle/heap - max_rounds = 300 - gun_type = /obj/item/weapon/gun/rifle/lmg - ammo_band_color = AMMO_BAND_COLOR_HEAP - //------------------------------------------------------- //UPP TYPE 71 RIFLE diff --git a/code/modules/vehicles/interior/interactable/vendors.dm b/code/modules/vehicles/interior/interactable/vendors.dm index f5aef4f430d..200b75430e8 100644 --- a/code/modules/vehicles/interior/interactable/vendors.dm +++ b/code/modules/vehicles/interior/interactable/vendors.dm @@ -245,8 +245,8 @@ list("M2C Box Magazine", 0, /obj/item/ammo_magazine/m2c, VENDOR_ITEM_REGULAR), list("M240 Incinerator Tank", 1, /obj/item/ammo_magazine/flamer_tank, VENDOR_ITEM_REGULAR), list("M41A MK1 Magazine (10x24mm)", 0, /obj/item/ammo_magazine/rifle/m41aMK1, VENDOR_ITEM_REGULAR), - list("M41AE2 Box Magazine (10x24mm)", 0, /obj/item/ammo_magazine/rifle/lmg, VENDOR_ITEM_REGULAR), - list("M41AE2 Holo Target Rounds (10x24mm)", 0, /obj/item/ammo_magazine/rifle/lmg/holo_target, VENDOR_ITEM_REGULAR), + list("M41AE2 Box Magazine (10x24mm)", 0, /obj/item/ammo_magazine/hpr_box, VENDOR_ITEM_REGULAR), + list("M41AE2 Holo Target Rounds (10x24mm)", 0, /obj/item/ammo_magazine/hpr_box/holo_target, VENDOR_ITEM_REGULAR), list("M44 Heavy Speed Loader (.44)", 0, /obj/item/ammo_magazine/revolver/heavy, VENDOR_ITEM_REGULAR), list("M44 Marksman Speed Loader (.44)", 0, /obj/item/ammo_magazine/revolver/marksman, VENDOR_ITEM_REGULAR), list("M4A3 HP Magazine (9mm)", 0, /obj/item/ammo_magazine/pistol/hp, VENDOR_ITEM_REGULAR), diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index a196e2f20c7..c67d6fa67b7 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -50725,7 +50725,7 @@ dir = 4 }, /obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/ammo_magazine/hpr_box/holo_target, /obj/item/weapon/gun/rifle/lmg{ current_mag = null }, From 53267e46b6e6f2a492ebac2829ba8f267e864959 Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Sun, 7 Jul 2024 21:51:55 -0500 Subject: [PATCH 13/40] additional balancing --- code/modules/projectiles/gun_attachables.dm | 1 + code/modules/projectiles/guns/rifles.dm | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index ec64a5b88ce..a6dfc2d4303 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3359,6 +3359,7 @@ Defined in conflicts.dm of the #defines folder. delay_mod = -FIRE_DELAY_TIER_7 else if(istype(G,/obj/item/weapon/gun/rifle/lmg)) delay_mod = 0 + fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_3 else delay_mod = -FIRE_DELAY_TIER_12 G.recalculate_attachment_bonuses() diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index f4860287faf..0d6ef5247c4 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1268,12 +1268,12 @@ set_fire_delay(FIRE_DELAY_TIER_11) set_burst_amount(BURST_AMOUNT_TIER_4) set_burst_delay(FIRE_DELAY_TIER_11) - fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 - fa_max_scatter = SCATTER_AMOUNT_TIER_2 + fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_1 + fa_max_scatter = SCATTER_AMOUNT_TIER_1 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_6 - burst_scatter_mult = -SCATTER_AMOUNT_TIER_7 + scatter = SCATTER_AMOUNT_TIER_5 + burst_scatter_mult = -SCATTER_AMOUNT_TIER_6 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT recoil_unwielded = RECOIL_AMOUNT_TIER_4 From 4492278d4afd90a5574f0ba644326ceaa991df4f Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Sun, 7 Jul 2024 21:53:51 -0500 Subject: [PATCH 14/40] fuck. Ok, this isn;t a varuiable. --- code/modules/projectiles/gun_attachables.dm | 1 - code/modules/projectiles/guns/rifles.dm | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index a6dfc2d4303..ec64a5b88ce 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3359,7 +3359,6 @@ Defined in conflicts.dm of the #defines folder. delay_mod = -FIRE_DELAY_TIER_7 else if(istype(G,/obj/item/weapon/gun/rifle/lmg)) delay_mod = 0 - fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_3 else delay_mod = -FIRE_DELAY_TIER_12 G.recalculate_attachment_bonuses() diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 0d6ef5247c4..4242ae07ab8 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1268,7 +1268,7 @@ set_fire_delay(FIRE_DELAY_TIER_11) set_burst_amount(BURST_AMOUNT_TIER_4) set_burst_delay(FIRE_DELAY_TIER_11) - fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_1 + fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 fa_max_scatter = SCATTER_AMOUNT_TIER_1 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 From ff71c36b7c5eb4d7eea8cb5349323a6729fd722a Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Mon, 8 Jul 2024 23:50:29 -0500 Subject: [PATCH 15/40] fixes for damage, ammo type of base magazine. minor flavor text change. --- code/modules/projectiles/gun_attachables.dm | 2 ++ code/modules/projectiles/guns/rifles.dm | 2 +- code/modules/projectiles/magazines/misc.dm | 4 +++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index ec64a5b88ce..700e433e4de 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -66,6 +66,7 @@ Defined in conflicts.dm of the #defines folder. var/movement_onehanded_acc_penalty_mod = 0 //Modifies accuracy/scatter penalty when firing onehanded while moving. var/velocity_mod = 0 // Added velocity to bullets var/hud_offset_mod = 0 //How many pixels to adjust the gun's sprite coords by. Ideally, this should keep the gun approximately centered. + var/fa_scatter_peak_mod = 0 //modifies how many bullets it takes to reach max scatter in FA firing. var/activation_sound = 'sound/weapons/handling/gun_underbarrel_activate.ogg' var/deactivation_sound = 'sound/weapons/handling/gun_underbarrel_deactivate.ogg' @@ -3359,6 +3360,7 @@ Defined in conflicts.dm of the #defines folder. delay_mod = -FIRE_DELAY_TIER_7 else if(istype(G,/obj/item/weapon/gun/rifle/lmg)) delay_mod = 0 + fa_scatter_peak_mod = FULL_AUTO_SCATTER_PEAK_TIER_3 else delay_mod = -FIRE_DELAY_TIER_12 G.recalculate_attachment_bonuses() diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 4242ae07ab8..38a29c8bede 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1275,7 +1275,7 @@ scatter = SCATTER_AMOUNT_TIER_5 burst_scatter_mult = -SCATTER_AMOUNT_TIER_6 scatter_unwielded = SCATTER_AMOUNT_TIER_1 - damage_mult = BASE_BULLET_DAMAGE_MULT + damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 recoil_unwielded = RECOIL_AMOUNT_TIER_4 diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 3c15e83f1f5..c2aabdedad0 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -22,7 +22,9 @@ /obj/item/ammo_magazine/hpr_box name = "\improper M41AE2 ammo box (10x24mm)" desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle." + caliber = "10x24mm" icon_state = "m41ae2" + default_ammo = /datum/ammo/bullet/rifle max_rounds = 300 gun_type = /obj/item/weapon/gun/rifle/lmg flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER @@ -40,7 +42,7 @@ /obj/item/ammo_magazine/hpr_box/heap name = "\improper M41AE2 HEAP ammo box (10x24mm)" - desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle. This one contains the standard Armor-Piercing explosive tipped round of the USCM." + desc = "A semi-rectangular box of M903 armor piercing high explosive rounds for the M41AE2 Heavy Pulse Rifle." default_ammo = /datum/ammo/bullet/rifle/heap max_rounds = 300 gun_type = /obj/item/weapon/gun/rifle/lmg From 793e5d51afa17bf148a1ec0b8bcb28229ed57ad8 Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Wed, 14 Aug 2024 12:33:05 -0500 Subject: [PATCH 16/40] see if this makes it more of a proper sidegrade or not --- code/modules/projectiles/gun_attachables.dm | 5 ++++- code/modules/projectiles/guns/rifles.dm | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 700e433e4de..01e0e18c05f 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3353,7 +3353,10 @@ Defined in conflicts.dm of the #defines folder. SEND_SIGNAL(user, COMSIG_MOB_DEPLOYED_BIPOD) playsound(user,'sound/items/m56dauto_rotate.ogg', 55, 1) accuracy_mod = HIT_ACCURACY_MULT_TIER_5 - scatter_mod = -SCATTER_AMOUNT_TIER_10 + if(istype(G,/obj/item/weapon/gun/rifle/lmg)) + scatter_mod = -SCATTER_AMOUNT_TIER_6 + else + scatter_mod = -SCATTER_AMOUNT_TIER_10 recoil_mod = -RECOIL_AMOUNT_TIER_4 burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 if(istype(G,/obj/item/weapon/gun/rifle/sniper/M42A)) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 38a29c8bede..645672d5a26 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1270,9 +1270,9 @@ set_burst_delay(FIRE_DELAY_TIER_11) fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 fa_max_scatter = SCATTER_AMOUNT_TIER_1 - accuracy_mult = BASE_ACCURACY_MULT + accuracy_mult = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_5 + scatter = SCATTER_AMOUNT_TIER_4 burst_scatter_mult = -SCATTER_AMOUNT_TIER_6 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 From 8350f4619b395c51b6061882f583d289b9310322 Mon Sep 17 00:00:00 2001 From: Steeclad Cat Date: Wed, 14 Aug 2024 12:48:50 -0500 Subject: [PATCH 17/40] fuck it this is good enough --- code/modules/projectiles/gun_attachables.dm | 5 +---- code/modules/projectiles/guns/rifles.dm | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 01e0e18c05f..700e433e4de 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3353,10 +3353,7 @@ Defined in conflicts.dm of the #defines folder. SEND_SIGNAL(user, COMSIG_MOB_DEPLOYED_BIPOD) playsound(user,'sound/items/m56dauto_rotate.ogg', 55, 1) accuracy_mod = HIT_ACCURACY_MULT_TIER_5 - if(istype(G,/obj/item/weapon/gun/rifle/lmg)) - scatter_mod = -SCATTER_AMOUNT_TIER_6 - else - scatter_mod = -SCATTER_AMOUNT_TIER_10 + scatter_mod = -SCATTER_AMOUNT_TIER_10 recoil_mod = -RECOIL_AMOUNT_TIER_4 burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 if(istype(G,/obj/item/weapon/gun/rifle/sniper/M42A)) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 645672d5a26..cb27551152b 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1273,7 +1273,7 @@ accuracy_mult = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 scatter = SCATTER_AMOUNT_TIER_4 - burst_scatter_mult = -SCATTER_AMOUNT_TIER_6 + burst_scatter_mult = -SCATTER_AMOUNT_TIER_8 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 recoil_unwielded = RECOIL_AMOUNT_TIER_4 From a477d1525e80d52c7480fe6a6f2f23313fa2f4af Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 13 Nov 2024 16:14:26 -0600 Subject: [PATCH 18/40] replaces new instances of ammobox --- code/game/objects/items/storage/belt.dm | 2 +- code/modules/gear_presets/contractor.dm | 20 +++++++++---------- .../projectiles/ammo_boxes/magazine_boxes.dm | 6 +++--- code/modules/projectiles/guns/rifles.dm | 4 ++-- code/modules/projectiles/magazines/misc.dm | 19 +++++++++++++----- .../lazy_templates/uscm_ert_station.dmm | 4 ++-- 6 files changed, 32 insertions(+), 23 deletions(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 84351ecd60b..9cc653a425b 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -608,7 +608,7 @@ /obj/item/storage/belt/marine/m41e2ap/fill_preset_inventory() for(var/i = 1 to storage_slots) - new /obj/item/ammo_magazine/rifle/lmg/ap (src) + new /obj/item/ammo_magazine/hpr_box/ap (src) /obj/item/storage/belt/marine/m39/fill_preset_inventory() for(var/i = 1 to storage_slots) diff --git a/code/modules/gear_presets/contractor.dm b/code/modules/gear_presets/contractor.dm index 706ba3b5f63..ad524610fae 100644 --- a/code/modules/gear_presets/contractor.dm +++ b/code/modules/gear_presets/contractor.dm @@ -212,11 +212,11 @@ if(3) // 33% new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lmg/tactical, WEAR_J_STORE) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/ap, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/ap, WEAR_IN_BACK) //*****************************************************************************************************/ /datum/equipment_preset/contractor/duty/engi @@ -568,9 +568,9 @@ new_human.equip_to_slot_or_del(new headset_type, WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/ua_civvies, WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/ap, WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/ap, WEAR_IN_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY) new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/light/vest, WEAR_JACKET) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET) @@ -597,8 +597,8 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/box/MRE,WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar/tactical, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/explosive/grenade/high_explosive/m15, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box, WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/box/attachments(new_human), WEAR_IN_BACK) diff --git a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm index 9cc5ef95450..ad358fa5af8 100644 --- a/code/modules/projectiles/ammo_boxes/magazine_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/magazine_boxes.dm @@ -505,7 +505,7 @@ overlay_ammo_type = "_reg_heavy" overlay_gun_type = "_m41ae2" overlay_content = "_m41ae2" - magazine_type = /obj/item/ammo_magazine/rifle/lmg + magazine_type = /obj/item/ammo_magazine/hpr_box num_of_magazines = 8 /obj/item/ammo_box/magazine/m41ae2/empty @@ -515,7 +515,7 @@ name = "magazine box (M41AE2 Holo-Target x 8)" overlay_ammo_type = "_holo_heavy" overlay_content = "_m41ae2_holo" - magazine_type = /obj/item/ammo_magazine/rifle/lmg/holo_target + magazine_type = /obj/item/ammo_magazine/hpr_box/holo_target /obj/item/ammo_box/magazine/m41ae2/holo/empty empty = TRUE @@ -524,7 +524,7 @@ name = "magazine box (M41AE2 HEAP x 8)" overlay_ammo_type = "_heap_heavy" overlay_content = "_m41ae2_heap" - magazine_type = /obj/item/ammo_magazine/rifle/lmg/heap + magazine_type = /obj/item/ammo_magazine/hpr_box/heap /obj/item/ammo_box/magazine/m41ae2/heap/empty empty = TRUE diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 126e21745c9..e3b5af5b745 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1290,14 +1290,14 @@ /obj/item/weapon/gun/rifle/lmg/tactical - current_mag = /obj/item/ammo_magazine/rifle/lmg/ap + current_mag = /obj/item/ammo_magazine/hpr_box/ap starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/suppressor, /obj/item/attachable/angledgrip) /obj/item/weapon/gun/rifle/lmg/tactical/set_gun_config_values() ..() damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2//equal to m41a dmg /obj/item/weapon/gun/rifle/lmg/army - current_mag = /obj/item/ammo_magazine/rifle/lmg/ap + current_mag = /obj/item/ammo_magazine/hpr_box/ap starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel, /obj/item/attachable/bipod) /obj/item/weapon/gun/rifle/lmg/army/set_gun_config_values() ..() diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 2127d77adbc..6d8cd35684e 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -21,13 +21,13 @@ /obj/item/ammo_magazine/hpr_box name = "\improper M41AE2 ammo box (10x24mm)" - desc = "A semi-rectangular box of rounds for the M41AE2 Heavy Pulse Rifle." + desc = "A magazine of rounds for the M41AE2 Heavy Pulse Rifle." caliber = "10x24mm" icon_state = "m41ae2" default_ammo = /datum/ammo/bullet/rifle max_rounds = 300 gun_type = /obj/item/weapon/gun/rifle/lmg - flags_magazine = AMMUNITION_CANNOT_REMOVE_BULLETS|AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER + flags_magazine = AMMUNITION_REFILLABLE|AMMUNITION_SLAP_TRANSFER ammo_band_icon = "+m41ae2_band" ammo_band_icon_empty = "+m41ae2_band_e" w_class = SIZE_MEDIUM @@ -35,14 +35,23 @@ /obj/item/ammo_magazine/hpr_box/holo_target name = "\improper M41AE2 ammo box (10x24mm holo-target)" - desc = "A semi-rectangular box of holo-target rounds for the M41AE2 Heavy Pulse Rifle." + desc = "A magazine of holo-target rounds for the M41AE2 Heavy Pulse Rifle." default_ammo = /datum/ammo/bullet/rifle/holo_target max_rounds = 300 ammo_band_color = AMMO_BAND_COLOR_HOLOTARGETING + +/obj/item/ammo_magazine/hpr_box/ap + name = "\improper M41AE2 AP ammo box (10x24mm)" + desc = "A magazine of steelcore armor piercing rounds for the M41AE2 Heavy Pulse Rifle." + default_ammo = /datum/ammo/bullet/rifle/heap + max_rounds = 300 + gun_type = /obj/item/weapon/gun/rifle/lmg + ammo_band_color = AMMO_BAND_COLOR_HEAP + /obj/item/ammo_magazine/hpr_box/heap - name = "\improper M41AE2 HEAP ammo box (10x24mm)" - desc = "A semi-rectangular box of M903 armor piercing high explosive rounds for the M41AE2 Heavy Pulse Rifle." + name = "\improper M41AE2 APHE ammo box (10x24mm)" + desc = "A magazine of M903 armor piercing high explosive rounds for the M41AE2 Heavy Pulse Rifle." default_ammo = /datum/ammo/bullet/rifle/heap max_rounds = 300 gun_type = /obj/item/weapon/gun/rifle/lmg diff --git a/maps/templates/lazy_templates/uscm_ert_station.dmm b/maps/templates/lazy_templates/uscm_ert_station.dmm index 9ab0cfeed17..d3666a620d9 100644 --- a/maps/templates/lazy_templates/uscm_ert_station.dmm +++ b/maps/templates/lazy_templates/uscm_ert_station.dmm @@ -55,7 +55,7 @@ /turf/open/floor/almayer/cargo, /area/adminlevel/ert_station/uscm_station) "aF" = ( -/obj/item/ammo_magazine/rifle/lmg, +/obj/item/ammo_magazine/hpr_box, /obj/item/weapon/gun/rifle/lmg, /obj/structure/surface/rack, /turf/open/floor/red/east, @@ -1166,7 +1166,7 @@ /obj/item/ammo_magazine/revolver/mateba, /obj/item/ammo_magazine/rifle/ap, /obj/item/ammo_magazine/rifle/incendiary, -/obj/item/ammo_magazine/rifle/lmg, +/obj/item/ammo_magazine/hpr_box, /obj/item/ammo_magazine/rifle/mar40, /obj/item/ammo_magazine/sniper/svd, /obj/item/ammo_magazine/rifle/m16, From cf9679fe639b70e70e410b5b99dd0bc85cbfbef9 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 13 Nov 2024 16:26:55 -0600 Subject: [PATCH 19/40] might break the tac and army variants. will work on those later. --- code/modules/projectiles/guns/rifles.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index e3b5af5b745..d41dbad671f 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1240,7 +1240,7 @@ /obj/item/weapon/gun/rifle/lmg name = "\improper M41AE2 heavy pulse rifle" - desc = "An LMG variant of the M41A. Offers greater sustained firepower at the cost of a grenade launcher, and some handling." + desc = "Heavy barreled higher capacity variant of the M41A. Greater sustained firepower and total ammunition carried, offset by removal of the grenade launcher and worsened handling." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m41ae2" item_state = "m41ae2" @@ -1278,11 +1278,12 @@ set_fire_delay(FIRE_DELAY_TIER_11) set_burst_amount(BURST_AMOUNT_TIER_4) set_burst_delay(FIRE_DELAY_TIER_11) + //hopefully, this will give it some reason to not just hold down trigger? Long lethal bursts. fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 fa_max_scatter = SCATTER_AMOUNT_TIER_1 accuracy_mult = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 - scatter = SCATTER_AMOUNT_TIER_4 + scatter = SCATTER_AMOUNT_TIER_3 burst_scatter_mult = -SCATTER_AMOUNT_TIER_8 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 From a04b0d5a3adf2c5755e65908b20ca70db96cd3b2 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 13 Nov 2024 16:30:24 -0600 Subject: [PATCH 20/40] ok last change. then i can test and see how it feels. --- code/modules/projectiles/guns/rifles.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index d41dbad671f..7ba56fa7393 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1288,6 +1288,8 @@ scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 recoil_unwielded = RECOIL_AMOUNT_TIER_4 + aim_slowdown = SLOWDOWN_ADS_LMG + wield_delay = WIELD_DELAY_SLOW /obj/item/weapon/gun/rifle/lmg/tactical From e59793cb6a69de3a3f3534858f4f64b6e38b2603 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 13 Nov 2024 16:45:12 -0600 Subject: [PATCH 21/40] additional modifications. defines a couple vars. --- code/modules/projectiles/gun.dm | 2 ++ code/modules/projectiles/gun_attachables.dm | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 50e735b9181..acb739b3111 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -393,6 +393,8 @@ accuracy_mult_unwielded += R.accuracy_unwielded_mod scatter += R.scatter_mod scatter_unwielded += R.scatter_unwielded_mod + fa_scatter_peak += R.fa_scatter_peak_mod + fa_max_scatter += R.fa_max_scatter_mod damage_mult += R.damage_mod velocity_add += R.velocity_mod damage_falloff_mult += R.damage_falloff_mod diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 98a870c7002..e3bb7f70510 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -67,6 +67,7 @@ Defined in conflicts.dm of the #defines folder. var/velocity_mod = 0 // Added velocity to bullets var/hud_offset_mod = 0 //How many pixels to adjust the gun's sprite coords by. Ideally, this should keep the gun approximately centered. var/fa_scatter_peak_mod = 0 //modifies how many bullets it takes to reach max scatter in FA firing. + var/fa_max_scatter_mod = 0 //modifies maximum scatter in sustained FA var/activation_sound = 'sound/weapons/handling/gun_underbarrel_activate.ogg' var/deactivation_sound = 'sound/weapons/handling/gun_underbarrel_deactivate.ogg' @@ -3641,8 +3642,9 @@ Defined in conflicts.dm of the #defines folder. delay_mod = 0 wield_delay_mod = WIELD_DELAY_FAST accuracy_mod = -HIT_ACCURACY_MULT_TIER_5 - scatter_mod = SCATTER_AMOUNT_TIER_9 + scatter_mod = -SCATTER_AMOUNT_TIER_9 recoil_mod = RECOIL_AMOUNT_TIER_5 + fa_scatter_peak_mod = 15 //fifteen more shots until you hit max scatter //item actions for handling deployment to full auto. /datum/action/item_action/bipod/toggle_full_auto_switch/New(Target, obj/item/holder) . = ..() From 0ec6b8ba5d97b6281a78affe5e4d03b86002b6c8 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 13 Nov 2024 17:05:19 -0600 Subject: [PATCH 22/40] so that was a fucking lie --- .../weapons/guns/guns_by_faction/uscm.dmi | Bin 31989 -> 32902 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index 8fb7093b57fc87df9330c244aeb7c0a1ad090f95..4f0dc672e09eaa68779dc4b6ca97a66917592849 100644 GIT binary patch literal 32902 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 Date: Fri, 15 Nov 2024 13:38:41 -0600 Subject: [PATCH 23/40] hopefully fixes issue --- maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 3e53ac2a14e..0cd7137f1be 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -48471,7 +48471,7 @@ dir = 4 }, /obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/hpr_box/holo_target, +/obj/item/ammo_magazine/hpr_box, /obj/item/weapon/gun/rifle/lmg{ current_mag = null }, From 8b30b8dcd3efc654be805b0b636c74a31ba02b63 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Fri, 15 Nov 2024 13:39:24 -0600 Subject: [PATCH 24/40] maybe fixes phantom var? --- code/modules/projectiles/gun_attachables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index e3bb7f70510..c9a60bff3b9 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3570,7 +3570,7 @@ Defined in conflicts.dm of the #defines folder. burst_scatter_mod = -SCATTER_AMOUNT_TIER_8 if(istype(gun, /obj/item/weapon/gun/rifle/sniper/M42A)) delay_mod = -FIRE_DELAY_TIER_7 - else if(istype(G,/obj/item/weapon/gun/rifle/lmg)) + else if(istype(gun,/obj/item/weapon/gun/rifle/lmg)) delay_mod = 0 fa_scatter_peak_mod = FULL_AUTO_SCATTER_PEAK_TIER_3 else From 6f2ad76a5c27404c735f5e4748929ec30c25784f Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Fri, 15 Nov 2024 13:46:36 -0600 Subject: [PATCH 25/40] fuck --- .../LV522_Chances_Claim.dmm | 95569 ---------------- .../lv522_chances_claim.json | 48 + 2 files changed, 48 insertions(+), 95569 deletions(-) delete mode 100644 maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm create mode 100644 maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm deleted file mode 100644 index 0cd7137f1be..00000000000 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ /dev/null @@ -1,95569 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aao" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) -"aat" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"aav" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"aaK" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"aaO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"aaX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) -"abn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"abo" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/oob) -"abt" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"abF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"abL" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"abN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"abS" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"aca" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"acm" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"acp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_2/ceiling) -"acu" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"acD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"acE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/bridge) -"acJ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/gm/river, -/area/lv522/oob) -"acM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/west) -"acY" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"adk" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"adl" = ( -/obj/item/storage/box/MRE{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/MRE{ - pixel_x = -1; - pixel_y = -6 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"adm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"adA" = ( -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"adB" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"adI" = ( -/obj/structure/ladder{ - icon_state = "ladder10"; - id = "hatch" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"adK" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) -"adN" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/gm/river, -/area/lv522/oob) -"adZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) -"aea" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/n_rockies) -"aee" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/b_block/bridge) -"aeh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ael" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"aey" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"aeE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"aeR" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"afa" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"afc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"afh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"afo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 9; - pixel_y = 17 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"afp" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/oob) -"afr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"aft" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"afI" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = -21; - pixel_y = -9 - }, -/obj/item/weapon/gun/boltaction{ - pixel_x = -5; - pixel_y = -13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"afK" = ( -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -4; - pixel_y = -8 - }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"afL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"afU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"afZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) -"agc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"agq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"agu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"agw" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"agy" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -3; - pixel_y = 11 - }, -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"agE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"agT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"aha" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ahk" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"ahn" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"aht" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/chunk) -"ahA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = 10 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"ahL" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ahP" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"ahZ" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"aii" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"aij" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"aiw" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"aiA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"aiC" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"aiH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"aiK" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"aiO" = ( -/obj/structure/window_frame/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"aiP" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"aiQ" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/central_streets) -"ajd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"ajg" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"ajk" = ( -/obj/structure/closet/crate, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"ajm" = ( -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) -"ajC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ajH" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ajM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/turf/closed/wall/strata_outpost, -/area/lv522/oob) -"ajS" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"akc" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"akh" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"akl" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"akp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"akM" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"akV" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"alu" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"alv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"alx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"alC" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"alI" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/oob) -"alR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"amc" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"aml" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"amr" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Corporate"; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"amL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"amP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"amQ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"amT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"amY" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -7; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"anc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"ann" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"anq" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"any" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "47" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"anG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"anM" = ( -/obj/structure/machinery/defenses/sentry/premade/dumb{ - desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; - name = "Damaged UA-577 Gauss Turret" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"anV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"aoi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ape" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"apj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"apG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"apL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) -"apS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"apU" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) -"apX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"apZ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"aqh" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"aqt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"aqv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"aqH" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"arc" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"arf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"arq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/burger, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"aru" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"ary" = ( -/obj/effect/decal/cleanable/blood{ - desc = "Watch your step."; - icon_state = "gib6" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"arB" = ( -/obj/structure/surface/table/almayer, -/obj/item/disk{ - desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; - name = "brat 2 disk" - }, -/obj/structure/machinery/recharger{ - layer = 2.9; - pixel_x = 5; - pixel_y = -13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"arC" = ( -/obj/item/prop/alien/hugger, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Bar & Grill"; - pixel_x = -16 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"arD" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"arV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"arW" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/south_east_street) -"asf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bridge) -"asn" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/w_rockies) -"asx" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"asz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"asC" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"asF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"asI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 16; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"atb" = ( -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"atv" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"atH" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"atQ" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) -"atZ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"aui" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"auj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"auE" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "24" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"auF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"auG" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/nw_rockies) -"auV" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan4, -/area/lv522/indoors/a_block/medical) -"avg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"avk" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/cargo_intake) -"avw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) -"avF" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"avH" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"avJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"avL" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"avP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"avV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"avX" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"awj" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"awu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"awI" = ( -/obj/item/explosive/plastic/breaching_charge{ - unacidable = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"awK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"awU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"awX" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"axb" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"axr" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -20 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"axz" = ( -/obj/item/weapon/gun/boltaction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"axD" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"axF" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"axK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"axN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ayg" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"ayt" = ( -/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/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"ayw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"ayJ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"ayR" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"azc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"aze" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"azf" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"azz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"azE" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"azH" = ( -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"azI" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"azJ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"azK" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"aAa" = ( -/obj/structure/dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"aAc" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"aAj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"aAI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"aAN" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"aBB" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"aBY" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"aCt" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"aCG" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"aCW" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"aDh" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"aDs" = ( -/obj/item/explosive/mine/active{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"aDG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"aDX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"aEf" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"aEs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"aEA" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"aEF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"aEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"aFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/random/toy, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"aFp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"aFt" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"aFv" = ( -/obj/structure/cargo_container/kelland/left, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 28 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"aFy" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/fitness) -"aFz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"aFJ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"aFM" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"aFN" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"aFQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liaison Office " - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"aGE" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/buritto, -/obj/item/trash/wy_chips_pepper, -/obj/item/trash/syndi_cakes, -/obj/item/trash/pistachios, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"aGQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"aGS" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"aHr" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"aHF" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"aHH" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"aHK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"aHN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"aHQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"aIa" = ( -/obj/item/clothing/head/hardhat/white, -/obj/item/prop/alien/hugger{ - pixel_x = 11; - pixel_y = -9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"aIf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/weapon, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"aIk" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"aIp" = ( -/turf/open/floor/plating, -/area/shuttle/drop2/lv522) -"aIr" = ( -/turf/closed/shuttle/elevator{ - dir = 5 - }, -/area/lv522/indoors/c_block/mining) -"aIv" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"aIS" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"aJa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"aJo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"aJB" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aJG" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"aJJ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/dorms) -"aJL" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"aKc" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"aKl" = ( -/obj/item/stool, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"aKt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"aKx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"aKX" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"aLa" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"aLe" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"aLJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"aLN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"aMc" = ( -/obj/effect/decal/cleanable/cobweb2, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"aMh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"aMk" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) -"aMK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"aMT" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) -"aNi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"aNm" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"aNr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"aNw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"aNy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"aNH" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"aNL" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"aNR" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"aOd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/wy/mid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"aOi" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -14 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"aOj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"aOx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"aPe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"aPt" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"aPx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"aPE" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"aPF" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"aPI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) -"aPK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) -"aPN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/cameras/wooden_tv{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"aPT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"aPU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"aQu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"aRt" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"aRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"aRK" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "27" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"aRN" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"aSk" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) -"aSz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"aSE" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"aSF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "61" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"aSO" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 23 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"aSU" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"aSZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/bridge) -"aTj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"aTm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"aTs" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"aTw" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"aTy" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"aTA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"aTP" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"aUa" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"aUf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"aUl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"aVa" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"aVg" = ( -/obj/structure/platform/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"aVj" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"aVl" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"aVA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"aVB" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor) -"aVX" = ( -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"aWb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"aWf" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"aWi" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"aWl" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"aWm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"aWN" = ( -/obj/structure/bed/bedroll{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"aXf" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"aXu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"aXx" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"aYc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"aYd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"aYg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"aYi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"aYB" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"aYC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"aYD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"aYE" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"aYL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"aYO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"aYR" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"aYV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/foamed_metal{ - layer = 3.1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"aZi" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"aZj" = ( -/obj/structure/plasticflaps, -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"aZx" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/fernybush{ - pixel_y = 12 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"aZD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"bat" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"baA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"baN" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"bbd" = ( -/obj/structure/closet/crate, -/obj/item/tool/shovel, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"bbs" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_1) -"bbB" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bbS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bcf" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"bck" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bcl" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"bcB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"bcE" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bcK" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_street) -"bcQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken3, -/area/lv522/indoors/b_block/bar) -"bds" = ( -/obj/structure/pipes/vents/pump, -/obj/vehicle/powerloader, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"bdA" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"bdH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"bdI" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"bdJ" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "71" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bdN" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"bdQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"beh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"beq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/ammo_box/rounds/smg{ - layer = 3; - pixel_x = 1; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bex" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"beB" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/corpo/glass) -"beD" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"beH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"beO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"beS" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"bfa" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"bfP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bga" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"bgc" = ( -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"bgh" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) -"bgp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"bgB" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"bgE" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/landing_zone_2) -"bgK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"bha" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"bhB" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"bhC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bia" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"bit" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"biJ" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"biL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"biN" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"biV" = ( -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"bjd" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/sewer) -"bje" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bjp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) -"bju" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"bjX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bkd" = ( -/obj/structure/window_frame/strata, -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"bkl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"bkm" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"bkr" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"bkt" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/headset{ - armor_bio = 20; - armor_bomb = 10; - armor_bullet = 20; - armor_internaldamage = 20; - armor_laser = 15; - armor_melee = 20; - armor_rad = 10; - desc = "A headset typically found in use by radio-operators and officers. This one bears a purple stripe down its side."; - name = "\improper personalized USCM headset" - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"bkv" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) -"bkE" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/nw_rockies) -"bkR" = ( -/obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"blz" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"blM" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"blO" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bmf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"bmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"bms" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"bmK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"bnd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"bnu" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"bnw" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bnL" = ( -/obj/structure/closet/crate, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/item/ore/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bnP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"bnV" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "41" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bnZ" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_west_street) -"bob" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"bof" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Chief Engineer Office"; - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 3; - pixel_y = -1 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"bon" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"bou" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"bow" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"boQ" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"bpp" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bridge) -"bpz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"bpN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"bpX" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) -"bqm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"bqo" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"bqz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"bqO" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/crossbow, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/obj/item/toy/crossbow_ammo, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"bqQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"bqT" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"bqV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"brd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"bri" = ( -/obj/structure/machinery/recharge_station, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"brk" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"brs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"brw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"brE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"brK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"brO" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2) -"bsh" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"bsk" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"bsw" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"bsz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"bsG" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/bridge) -"bsI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"bsQ" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"bsR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"btd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"btO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) -"btY" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/southwest, -/area/lv522/indoors/a_block/dorms) -"buf" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) -"buu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"buB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "77" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"buD" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"bvk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"bvm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"bvr" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/coagulation/icon4_8, -/area/lv522/oob) -"bvO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bvU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"bwd" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/toy/beach_ball{ - pixel_x = -12; - pixel_y = -4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bwf" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/ammo_magazine/rifle/m4ra{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bwA" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/trash/eat, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bwE" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bwF" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bxa" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bxm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/darkpurple2/northeast, -/area/lv522/indoors/a_block/dorms) -"bxq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"bxr" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"bxO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bxR" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"byj" = ( -/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/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"byG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"byS" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"byW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"bzc" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"bzd" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bzg" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"bzw" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Dorms"; - pixel_y = 26 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"bzC" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/cargo_intake) -"bzL" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"bzW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"bAe" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"bAm" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"bAn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"bAs" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"bAI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"bAK" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"bAL" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/bikehorn, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"bBb" = ( -/obj/item/tool/surgery/circular_saw, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"bBd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"bBq" = ( -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"bBs" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"bBt" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"bBI" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"bBN" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bBT" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"bCi" = ( -/obj/structure/machinery/light/double, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"bCl" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"bCs" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bCv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"bCC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"bCF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"bCJ" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"bCR" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "46" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bCS" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bCV" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"bDr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bDv" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"bDE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bDO" = ( -/obj/item/tool/lighter/zippo{ - layer = 3.1; - pixel_x = 12; - pixel_y = 18 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"bDP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"bDR" = ( -/obj/item/explosive/grenade/high_explosive, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"bDW" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/north) -"bEa" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bEe" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"bEq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"bEt" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"bEB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"bEJ" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bFl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"bFn" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"bFs" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"bGf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"bGT" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"bHp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"bHA" = ( -/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/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"bHF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"bHV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"bIe" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"bIl" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bIr" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/north) -"bIs" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"bID" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"bII" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 11; - pixel_y = 16 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/admin) -"bIJ" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/atmos/cargo_intake) -"bIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"bJk" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"bJm" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) -"bJn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"bJD" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "67" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"bJM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"bJN" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"bJZ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"bKf" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"bKj" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"bKq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"bKs" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"bKJ" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"bKL" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"bKR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"bLe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/vehicle/powerloader/ft{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) -"bLf" = ( -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"bLB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"bLK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"bLX" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"bMp" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"bMB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"bME" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bMN" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"bMX" = ( -/turf/closed/shuttle{ - dir = 1; - icon_state = "pwall" - }, -/area/lv522/oob) -"bNf" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"bNm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"bNx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "24" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"bNE" = ( -/obj/item/tank/oxygen{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"bNN" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"bOc" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/hallway) -"bOE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"bOF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"bOP" = ( -/obj/item/stack/rods/plasteel, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"bOZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"bPa" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/south_west_street) -"bPf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 3 - }, -/obj/structure/machinery/microwave{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"bPE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"bPH" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"bPZ" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"bQb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) -"bQd" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"bQe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"bQg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"bQo" = ( -/obj/structure/largecrate/guns/russian, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"bQp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_x = -6; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bQr" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"bQt" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bQG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"bQI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"bQX" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"bRl" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"bRq" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"bRK" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -2; - pixel_y = 24 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/admin) -"bRO" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) -"bRP" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"bRV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bSi" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"bSk" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1"; - layer = 5.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) -"bSm" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"bSz" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"bSU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"bTg" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "64" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bTj" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"bTm" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"bTo" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"bTu" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"bTE" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"bTJ" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"bTS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"bTT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"bUq" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"bUv" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"bUF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/corporate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bUH" = ( -/obj/item/tool/wet_sign{ - pixel_x = -11; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/vomit, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"bUN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"bUV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"bVb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"bVc" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"bVh" = ( -/obj/structure/closet/secure_closet/bar, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"bVu" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - layer = 3.1; - pixel_y = 24 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"bVG" = ( -/obj/structure/bed/bedroll{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"bVR" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/plush/farwa{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"bVU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"bWd" = ( -/obj/structure/flora/jungle/planttop1, -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"bWo" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"bWt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"bWv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"bWw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"bWA" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 4; - pixel_x = -4; - pixel_y = 11 - }, -/obj/structure/sink/puddle{ - layer = 2.1 - }, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"bWC" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"bWF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"bWU" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"bWV" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"bXa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"bXi" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"bXO" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"bXS" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"bXW" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"bXZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"bYy" = ( -/obj/item/paper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"bYF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/southwest, -/area/lv522/indoors/a_block/medical) -"bYS" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4; - pixel_y = 29 - }, -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"bYV" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"bYZ" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"bZd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"bZw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"bZB" = ( -/obj/structure/girder/displaced, -/turf/open/floor/corsat, -/area/lv522/atmos/outdoor) -"bZJ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"bZK" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"bZN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"bZR" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"cat" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"caD" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"caE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"caK" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"caO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"cbg" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"cbl" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 12; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 20; - pixel_y = -5 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"cbt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"cbI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"cbV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"cbW" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"ccn" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cct" = ( -/obj/structure/bed/chair/wood/normal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ccy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"ccL" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) -"ccN" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"ccR" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"ccY" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "75" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cdi" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"cdj" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cdZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"cec" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"cem" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bar) -"cex" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/landing_zone_2) -"ceG" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/item/trash/buritto, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"ceT" = ( -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"ceU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"cfb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"cfm" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) -"cfT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"cgg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"cgk" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cgn" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"cgs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"cgz" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"cgD" = ( -/obj/structure/prop/turbine_extras, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"cgO" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"cgU" = ( -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical/glass) -"cgW" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"che" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"chk" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"chm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) -"chB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"chM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - layer = 3.1 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/tofubreadslice{ - pixel_x = -7 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"chR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"cib" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cic" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/golden_cup{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cih" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"cit" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"ciw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"ciS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"ciU" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"ciV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"cjb" = ( -/obj/vehicle/train/cargo/engine{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"cjf" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"cjv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"cjw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"cjy" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"cjE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"cjJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cjL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"cjW" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"ckf" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"ckh" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"cki" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"ckt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"ckz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"ckB" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"ckC" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ckG" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper B-Block Bar" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"ckI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"ckS" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"clf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"clh" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"cli" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"clA" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/west) -"clC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"clY" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"cmr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/landing_zone_1) -"cmB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cmF" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel"; - 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 = 8; - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"cmJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"cmK" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/donut/jelly{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"cmQ" = ( -/obj/effect/decal/cleanable/generic, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -13; - pixel_y = -9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"cnh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cnn" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"cnq" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"cnr" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"cnz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"cnI" = ( -/obj/structure/largecrate/supply/supplies/metal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"coO" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"coU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"coZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"cpx" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"cpy" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"cpG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Colony Operations Centre"; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"cpJ" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"cpS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"cpX" = ( -/obj/item/toy/beach_ball/holoball, -/obj/item/shard{ - icon_state = "medium"; - pixel_x = 5; - pixel_y = -11 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"cqb" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"cqe" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"cqp" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"cqs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) -"cqx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"cqy" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Marshals Office Armory"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"cqF" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"cra" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "29" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"crz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Kitchen"; - pixel_y = -6 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"crJ" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"crM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/powercell, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"crP" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"crT" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"crU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"csA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"csJ" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"csU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"csV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ctC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"ctE" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/lv522/oob) -"ctF" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"ctS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"ctT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"cue" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"cui" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"cul" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) -"cuy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cuL" = ( -/obj/structure/bed/bedroll{ - dir = 1 - }, -/obj/item/trash/uscm_mre, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"cuM" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"cve" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"cvi" = ( -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"cvl" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"cvr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"cvy" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) -"cvH" = ( -/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 - }, -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cwd" = ( -/obj/item/storage/backpack, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"cwv" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"cwB" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"cwE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"cwI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"cwL" = ( -/turf/closed/wall/shiva/prefabricated, -/area/lv522/landing_zone_2) -"cwN" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"cwO" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cxo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"cxu" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cxG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"cxJ" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"cxP" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"cyb" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cyc" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cyh" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) -"cym" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"cyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"cyR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"cyT" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"czd" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"czf" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"czC" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/east) -"czD" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"czG" = ( -/obj/structure/sign/safety/radio_rad{ - pixel_y = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"czO" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/pamphlet/skill/powerloader, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"czW" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 12 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"cAh" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"cAw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"cAI" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) -"cAN" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"cBj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"cBp" = ( -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/security) -"cBC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cBF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "77" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cCd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"cCH" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"cCN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"cCX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"cCY" = ( -/obj/structure/bed/chair/wheelchair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"cDd" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"cDi" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"cDj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) -"cDv" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"cDw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"cDH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"cDX" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"cEg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"cEh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"cEj" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"cEr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"cEB" = ( -/obj/structure/machinery/light/double, -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/indoors/c_block/mining) -"cEN" = ( -/obj/structure/bed/bedroll{ - dir = 10 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"cFc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cFe" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cFO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"cFR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cGv" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) -"cGz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/t_comm) -"cGM" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"cGY" = ( -/obj/item/tool/wrench, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cHg" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"cHj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cHx" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"cIb" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cIk" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"cIo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"cIr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cIt" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "15" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"cIA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"cID" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"cII" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"cIK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"cIM" = ( -/obj/structure/filingcabinet{ - density = 0; - layer = 3.1; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -10; - pixel_y = 21 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"cIO" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"cJc" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/cargo_container/wy/right, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"cJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cJm" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"cJp" = ( -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"cJy" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"cJA" = ( -/obj/item/device/flashlight/lamp/tripod{ - layer = 6; - pixel_y = 11 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"cJI" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"cJL" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/north_east_street) -"cJZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cKp" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor/north) -"cKw" = ( -/obj/structure/girder, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) -"cKy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) -"cKz" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/dorms) -"cKC" = ( -/obj/structure/girder/displaced, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) -"cKD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = 16; - pixel_y = 7 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"cKF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"cKG" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/nw_rockies) -"cKQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cKS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cKX" = ( -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"cLf" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/kitchen/damage) -"cLi" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"cLt" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"cLy" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_y = 15 - }, -/obj/structure/machinery/washing_machine{ - density = 0; - layer = 3.5; - pixel_y = 29 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"cLB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"cLC" = ( -/obj/item/cell/crap{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/item/cell/crap{ - pixel_y = 8 - }, -/obj/item/cell{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"cLE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"cLS" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"cMc" = ( -/obj/item/clothing/head/hardhat, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cMd" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"cMz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"cML" = ( -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/m4ra/ext{ - current_rounds = 0 - }, -/obj/structure/closet/crate/ammo, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"cMM" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cNI" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) -"cNM" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cNO" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"cNU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway/damage) -"cNV" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/north_command_centre) -"cOa" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"cOf" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"cOv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"cOI" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/trash/ceramic_plate{ - pixel_x = -13; - pixel_y = 2 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"cON" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"cOX" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"cPb" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/mop{ - pixel_y = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"cPd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"cPi" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"cPm" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"cPo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"cPr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"cPx" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/filt) -"cPB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"cPH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"cPL" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"cPM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"cQm" = ( -/obj/structure/surface/table/reinforced/prison, -/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/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"cQB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"cQE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"cQL" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cQN" = ( -/obj/structure/machinery/computer3/server/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/east_reactor/south) -"cQR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"cQU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"cRg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"cRo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"cRJ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "48" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"cSg" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"cSk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/casino) -"cSz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = 3 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cSI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cSL" = ( -/obj/structure/machinery/computer/telecomms/server{ - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"cSO" = ( -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"cTx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/c_block/cargo) -"cTA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cTJ" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_1) -"cTU" = ( -/obj/structure/curtain/red, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"cTX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cTZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"cUb" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/east_central_street) -"cUf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"cUg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cUl" = ( -/obj/item/stack/cable_coil/cut, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) -"cUs" = ( -/obj/item/trash/wy_chips_pepper, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cUG" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/garage) -"cUT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"cUY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/c_block/cargo) -"cVi" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"cVp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"cVx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"cVy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cVO" = ( -/obj/item/fuel_cell{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"cWf" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/atmos/cargo_intake) -"cWh" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/filt) -"cWt" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"cWz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/security) -"cWP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"cXd" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "West_Lock"; - name = "remote door-control"; - pixel_x = -9; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "East_Lock"; - name = "remote door-control"; - pixel_x = 10; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Containers_west_LV522"; - name = "remote door-control"; - pixel_x = 1; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "West LZ Storage"; - name = "West LZ Storage control"; - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"cXq" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/machinery/autolathe, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"cXu" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -9; - pixel_y = 5 - }, -/obj/item/reagent_container/glass/rag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cXD" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 3.1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"cXF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"cXI" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"cXP" = ( -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"cYn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"cYp" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"cYE" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"cYP" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"cYQ" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"cYZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Medical"; - pixel_x = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"cZf" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) -"cZl" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/effect/decal/cleanable/cobweb, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"cZm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"cZE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"cZH" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/atmos/sewer) -"cZQ" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"cZR" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/east) -"daf" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"daR" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"daU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"dba" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"dbg" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dbr" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"dbF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"dbG" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"dbO" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"dbP" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"dbQ" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"dcb" = ( -/obj/structure/coatrack{ - pixel_y = 24 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ - pixel_x = -2; - pixel_y = 27 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"dcc" = ( -/obj/structure/cargo_container/kelland/left, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"dco" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"dcu" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"dcX" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "89" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ddf" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ddl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"ddG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"ddK" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -6; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 9; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ddM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/south/grey, -/obj/item/clothing/under/swimsuit/green{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/item/prop/alien/hugger{ - pixel_x = -9 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"dec" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/command_centre) -"ded" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "99" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"dek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/cargo_container/ferret/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"den" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"dep" = ( -/obj/structure/prop/structure_lattice{ - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"dey" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"deS" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"dfa" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Marked_2"; - pixel_y = 26 - }, -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"dfk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"dfD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"dfE" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/trash/cigbutt{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/item/weapon/gun/pistol/holdout{ - pixel_y = 31 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"dfI" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"dfJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"dfR" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"dfU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"dfV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"dgb" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) -"dgx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"dgR" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"dhb" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dhm" = ( -/obj/structure/machinery/bioprinter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"dhP" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"dhX" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) -"did" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"dil" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"dir" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"diz" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"diG" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) -"diM" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -5; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"diO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"djf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"djm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"djy" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"djM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"dka" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"dkg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dkq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"dkr" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/reactor_garage) -"dkB" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"dkC" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) -"dkX" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"dme" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"dmm" = ( -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_y = -8 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"dmp" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"dmy" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"dmG" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dmK" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dmY" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"dnF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dnM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"doc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"doj" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dor" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dox" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent5"; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"doF" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"doL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"doO" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"doT" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"dpa" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) -"dpk" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"dpC" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dqe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"dqr" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dqt" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"dqG" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 16 - }, -/obj/item/frame/table/almayer{ - pixel_x = 10; - pixel_y = 12 - }, -/obj/item/frame/table/almayer{ - pixel_y = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dqL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"dqM" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Northern Dorms"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"dqW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"dqZ" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"drc" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"drz" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/hatchet, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"drT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"dsl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"dsn" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"dsu" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"dsv" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"dsA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"dsF" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"dsL" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/sentry_computer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"dsQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"dsU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"dto" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"duc" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) -"duf" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"duC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"duM" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"dvc" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"dvf" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"dvg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"dvh" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"dvm" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"dvp" = ( -/obj/structure/largecrate/supply, -/obj/structure/largecrate/supply{ - layer = 3.2; - pixel_x = 10; - pixel_y = 19 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"dvy" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_2) -"dvA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"dvC" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dvK" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"dvO" = ( -/obj/structure/platform_decoration/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"dwa" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dwd" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"dwi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"dwp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"dwq" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_west_street) -"dww" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"dwI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"dwT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"dxb" = ( -/obj/structure/prop/server_equipment/yutani_server{ - pixel_y = 17 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"dxc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 13 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) -"dxo" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"dxr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"dxv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"dxy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"dxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) -"dxS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"dyc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"dyi" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"dyq" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/blink{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/toy/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"dyw" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"dyZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/cell/high{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"dzg" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"dzn" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) -"dzt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"dzw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"dAe" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"dAk" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dAo" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"dAu" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"dBd" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"dBs" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"dBC" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dBD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"dBE" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"dBG" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"dBQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"dBR" = ( -/obj/structure/barricade/wooden, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dCc" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"dCh" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"dCi" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"dCw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"dCL" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m4ra{ - current_mag = null - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dCY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"dDj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"dDn" = ( -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"dDq" = ( -/turf/closed/wall/shiva/prefabricated, -/area/lv522/landing_zone_2/ceiling) -"dDB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Control" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"dDK" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"dDM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"dDS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dEc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dEm" = ( -/obj/structure/closet, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"dEp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = -26; - pixel_y = -13 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"dEz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"dEP" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/item/trash/wy_chips_pepper, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"dEQ" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"dEX" = ( -/obj/structure/machinery/optable, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"dFd" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"dFg" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"dFn" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/structure/safe/floor{ - pixel_y = -6; - spawnkey = 0 - }, -/obj/item/clothing/under/redcoat, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"dFr" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "48" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dFz" = ( -/turf/closed/shuttle/elevator{ - dir = 6 - }, -/area/lv522/indoors/c_block/mining) -"dFA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"dFH" = ( -/obj/structure/machinery/power/port_gen/pacman{ - layer = 3.1; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"dFQ" = ( -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"dFR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dFT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dFW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"dGi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Equipment" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"dGl" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"dGD" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"dGR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/key/cargo_train{ - icon_state = "keys" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"dHi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"dHj" = ( -/obj/item/device/flashlight, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dHy" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"dHR" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - pixel_x = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"dIi" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"dIj" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"dIK" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"dIN" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"dJo" = ( -/obj/structure/machinery/microwave, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"dJs" = ( -/obj/item/tool/pen/red/clicky, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dJt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"dJy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"dJJ" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - pixel_x = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"dKd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"dKs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"dKG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"dKO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/east) -"dKU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"dKV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"dLj" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"dLr" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"dLB" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"dLC" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"dLP" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"dLT" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"dLZ" = ( -/obj/item/storage/box/guncase/m3717, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"dMh" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"dMl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"dMr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"dMs" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"dMw" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue{ - pixel_y = -12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"dMK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"dMR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) -"dMY" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"dNm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"dNG" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"dNR" = ( -/obj/structure/closet/secure_closet/marshal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dNY" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"dOa" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/north) -"dOe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"dOj" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"dOs" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel/far) -"dOD" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/north_command_centre) -"dOM" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_west_street) -"dOZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/toilet) -"dPt" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"dPF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"dPG" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"dPO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/storage/fancy/cigar/matchbook/exec_select{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dPQ" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"dQb" = ( -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"dQc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/obj/item/newspaper{ - anchored = 1; - desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; - name = "menu"; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"dQr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"dQs" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dQx" = ( -/turf/open/floor/prison/darkpurple2/southeast, -/area/lv522/indoors/a_block/dorms) -"dQO" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"dQY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"dRG" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"dRL" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/dorm_north) -"dSd" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"dSw" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"dSE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"dSH" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"dSK" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"dSP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dTj" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"dTr" = ( -/obj/item/clothing/head/helmet/marine/grenadier{ - armor_bullet = 10; - desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; - name = "\improper damaged M3-G4 grenadier helmet"; - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"dTv" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dTB" = ( -/turf/open/floor/corsat/brown, -/area/lv522/oob) -"dTJ" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"dTN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dUp" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"dUS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -18 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"dUV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/paper/wy, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"dUW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"dUY" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"dVb" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"dVf" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"dVt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"dVu" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "5" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"dVC" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"dVM" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"dVP" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"dVY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dWc" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"dWn" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"dWy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"dWD" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"dWF" = ( -/obj/structure/ore_box, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"dWJ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"dXa" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/nw_rockies) -"dXn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"dXt" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"dXI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/flask/detflask{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/head/det_hat, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"dXR" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"dYi" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Meeting Room"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"dYA" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"dYK" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"dYM" = ( -/obj/structure/closet/crate, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"dYQ" = ( -/obj/structure/closet/crate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"dYU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"dZc" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"dZi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"dZo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"dZs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) -"dZv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"dZx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/donut{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"dZP" = ( -/obj/structure/curtain/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"dZU" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = 10; - pixel_y = 32 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "16" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"eaa" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"eai" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"eak" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"eao" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"eaC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"eaE" = ( -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"eaW" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"ebg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"ebj" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"ebm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"ebu" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"ebU" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 - }, -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/hallway) -"ecn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"ecv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ecH" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"edi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"edj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"edu" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"edx" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"edQ" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"eef" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"eeh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"eer" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"eet" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -9 - }, -/obj/structure/machinery/suit_storage_unit{ - pixel_x = 16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eeF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"eeY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"efw" = ( -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"efB" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"efG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) -"efI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"efK" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_y = -7 - }, -/obj/item/bananapeel{ - 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 = -7 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"egg" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"egG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"egI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"egV" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"egW" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen/damage) -"ehd" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"ehw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"ehy" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/hallway) -"ehA" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"ehC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"ehO" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"eic" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"eiE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"eiH" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"eiS" = ( -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"eiW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"eiZ" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"ejh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"eji" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"ejk" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"eju" = ( -/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/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"ejH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"ejI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"ekm" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"ekB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "18" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ekO" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ekZ" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"eli" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"elo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"elq" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"elr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"elw" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"emb" = ( -/obj/item/ammo_magazine/smartgun{ - current_rounds = 249 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"emm" = ( -/obj/structure/prop/invuln/ice_prefab, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2"; - pixel_x = 3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"emz" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"eng" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"enE" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"enP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"enS" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"eof" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"eou" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eoG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"epm" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"epr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"epJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"eqo" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eqw" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"eqT" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"eqV" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"erd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"erg" = ( -/obj/structure/machinery/sleep_console, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"erp" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"erA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"erP" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"esa" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"esc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) -"eso" = ( -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"esq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"est" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"esw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/matches{ - pixel_y = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"esD" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"esP" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"esT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"esY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"etx" = ( -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"eur" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"euS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"euU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"evo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) -"evQ" = ( -/obj/structure/barricade/sandbags, -/obj/item/trash/uscm_mre{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"evS" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = 4; - pixel_y = -16 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"ewh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"ewq" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"ewr" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"ewC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"ewD" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"ewE" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"ewM" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"exd" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/filt) -"exl" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"exu" = ( -/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/prison, -/area/lv522/indoors/b_block/hydro) -"exx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"exO" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer2{ - layer = 2.0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"exW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"eyc" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"eyz" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"eyE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_x = -14; - pixel_y = 10 - }, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"eyM" = ( -/obj/item/stack/tile/wood{ - layer = 2.5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"eyN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"eza" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ezo" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Hubba hubba."; - icon = 'icons/obj/structures/props/posters.dmi'; - icon_state = "poster17"; - name = "\improper torn magazine page"; - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Hubba hubba."; - icon = 'icons/obj/structures/props/posters.dmi'; - icon_state = "poster3"; - name = "\improper torn magazine page"; - pixel_x = 5; - pixel_y = 14 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ezp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"ezU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/north_command_centre) -"eAm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"eAC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"eAT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"eAX" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/fertilizer, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"eBi" = ( -/obj/item/stack/cable_coil/cut, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) -"eBp" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"eBI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"eBN" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"eCe" = ( -/obj/effect/alien/resin/sticky, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"eCn" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_west_street) -"eCo" = ( -/obj/vehicle/powerloader{ - dir = 4; - layer = 3.5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) -"eCt" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/hairlesshide{ - pixel_y = -1 - }, -/obj/item/stack/sheet/hairlesshide{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"eCO" = ( -/obj/structure/largecrate/random, -/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/corsat, -/area/lv522/atmos/cargo_intake) -"eCY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"eDc" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"eDm" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"eDq" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) -"eDw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"eDz" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"eDQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"eDS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) -"eDT" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"eEe" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eEh" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"eEl" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"eEE" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) -"eFb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"eFf" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"eFl" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"eFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/toy/dice, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"eFt" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"eFv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"eFx" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"eFC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"eFM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"eFO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"eFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor) -"eFT" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"eFX" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"eGq" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"eGu" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"eGQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"eGT" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"eHl" = ( -/obj/structure/machinery/floodlight, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eHy" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"eHC" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"eHF" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"eHJ" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"eHP" = ( -/obj/structure/barricade/handrail, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"eHY" = ( -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"eIh" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eIo" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"eID" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"eIH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"eIS" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"eJh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"eJl" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"eJm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"eJw" = ( -/obj/item/clothing/mask/rebreather{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"eJD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"eJK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"eJR" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"eKd" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"eKl" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"eKm" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"eKz" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"eKH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bar) -"eKJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"eKL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"eKO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"eLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"eLd" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"eLG" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -19; - pixel_y = -2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"eLU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"eLV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/oob) -"eMn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"eMp" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"eMw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/structure/machinery/door/window{ - dir = 2; - pixel_y = 6 - }, -/obj/structure/machinery/door/window{ - dir = 1; - pixel_y = 18 - }, -/obj/structure/window{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/window{ - dir = 8; - pixel_y = 17 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"eML" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"eNf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"eNg" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"eNh" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eNk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"eNq" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"eNu" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"eNA" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eNC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"eNL" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) -"eNX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"eOe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"eOg" = ( -/obj/structure/ore_box{ - pixel_x = -4 - }, -/obj/structure/ore_box{ - layer = 3.2; - pixel_x = -11; - pixel_y = 23 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"eOv" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"eOE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"ePb" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"ePg" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"ePl" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"ePp" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"ePR" = ( -/obj/structure/barricade/wooden{ - dir = 4; - layer = 5.3 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"eQa" = ( -/obj/item/explosive/mine/active{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"eQj" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"eQo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"eQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"eQD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eQK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"eQL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Mining Overseers Office" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"eRa" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"eRl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"eRI" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"eSn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"eSp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"eSx" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"eSA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"eSC" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"eSY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"eSZ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"eTw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"eTK" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"eTQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"eTU" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"eTV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"eUf" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 1; - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"eUg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper/janitor, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"eUh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"eUt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"eUE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"eUT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"eUV" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Storage"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"eUX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"eVk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"eVx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/wishsoup, -/obj/item/tool/kitchen/utensil/spoon{ - layer = 2.9; - pixel_x = 10; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"eVF" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"eVU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"eWc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"eWf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/welding{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"eWG" = ( -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/item/stool, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"eWT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"eXe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) -"eXG" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"eXO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/obj/structure/barricade/wooden{ - dir = 8; - layer = 4.1; - pixel_x = 9; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"eXU" = ( -/obj/structure/machinery/power/terminal, -/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/plating, -/area/lv522/indoors/lone_buildings/engineering) -"eXV" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"eYa" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"eYg" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"eYn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"eYA" = ( -/obj/item/clothing/head/headband/tan{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"eYM" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/landing_zone_1/tunnel) -"eZB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"eZM" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"eZT" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) -"faj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fan" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"fax" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"fay" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"faQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8; - pixel_x = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"faW" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "28" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fba" = ( -/obj/structure/flora/bush/ausbushes/grassybush{ - layer = 2.9 - }, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"fbb" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) -"fbl" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fbn" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"fbA" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"fbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"fbT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"fbY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fce" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"fcr" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"fcw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/t_comm) -"fcE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"fcQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fdh" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"fdn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"fdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"fdw" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"fdS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"fei" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"fej" = ( -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"feo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"feq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) -"fey" = ( -/obj/structure/prop/vehicles, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"feA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"feD" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"ffe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 15 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"ffj" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"ffv" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ffx" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"ffz" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"ffG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/girder, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"ffH" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_street) -"ffL" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"ffM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"ffS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"fga" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"fgb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"fgf" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 17 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"fgk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"fgl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fgv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"fgB" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 18; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"fha" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"fhi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"fhl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"fhu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -12; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"fhP" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fhX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) -"fib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fir" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fiu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"fiB" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"fiS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"fiZ" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"fjb" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"fjk" = ( -/obj/structure/surface/rack, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs{ - icon_state = "earmuffs2"; - item_state = "earmuffs2"; - pixel_y = -4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"fjr" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"fjJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"fjP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"fjQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"fkj" = ( -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"fko" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/window, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"fkB" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"fkD" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"fkF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"fkL" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fld" = ( -/mob/living/simple_animal/mouse, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"fll" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - req_one_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"flr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"flD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"flI" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 6; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"flN" = ( -/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/structure/tunnel, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"flR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"flY" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) -"fmd" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"fmr" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"fms" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"fmz" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"fmT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"fnc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"fni" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"fnm" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"fno" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"fnp" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "2" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fnv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"fnA" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"fnC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"fnI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"fog" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/monitor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"fop" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) -"foq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"fox" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Botany"; - pixel_x = 16 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"foI" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"foO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"foQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) -"foV" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"foW" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fpa" = ( -/obj/item/device/defibrillator, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"fpc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"fpj" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "95" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fpn" = ( -/obj/item/device/analyzer, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fpR" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"fqd" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"fqj" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fqJ" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"fqP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"fra" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"frg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 13; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"frh" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"frs" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"frH" = ( -/obj/item/clothing/head/hardhat/dblue{ - layer = 6.1; - pixel_y = 15 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"frK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Holding Cell" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"frS" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges) -"frU" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"frX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"fss" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"fsz" = ( -/obj/structure/platform, -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"fsQ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"ftd" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"fth" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"fti" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"ftl" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.2 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"fto" = ( -/obj/item/storage/belt/grenade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"ftq" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"fts" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"fty" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"ftK" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ftP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"ftX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"ftZ" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "49" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fuc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/pipe_water{ - dir = 8; - pixel_x = -31 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"fui" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ful" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"fuo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"fuq" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"fur" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/colony_floodlight, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"fuv" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fuw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"fux" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/machine/ghettosmes, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"fuN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"fuZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/oob) -"fvj" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"fvx" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"fvN" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"fvO" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fvV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"fwo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"fwz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"fxc" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"fxd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/oob/w_y_vault) -"fxh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) -"fxx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"fxy" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"fxF" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"fxT" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fyf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fyz" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"fyC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"fzf" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"fzj" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"fzn" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fzp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"fzs" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"fzv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"fzx" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"fzE" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorm_north) -"fzJ" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"fzS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fzV" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"fAb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"fAe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"fAo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"fAq" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"fAw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"fAK" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"fAR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) -"fAV" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"fAY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"fBb" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"fBu" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"fBI" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fBR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"fBV" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"fBY" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"fCd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"fCm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"fCx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) -"fCC" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fCQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"fDw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fDx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"fDD" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"fDK" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"fDR" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"fEe" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"fER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"fEZ" = ( -/obj/item/stack/sheet/wood/large_stack, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"fFc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"fFi" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) -"fFp" = ( -/obj/item/clothing/gloves/yellow, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fFv" = ( -/obj/structure/prop/structure_lattice, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"fFw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fFA" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"fFD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fFH" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/east_central_street) -"fGy" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"fGB" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fGK" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/outdoors/colony_streets/central_streets) -"fHq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fHF" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"fHI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"fHL" = ( -/obj/structure/machinery/light, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"fIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"fIc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"fIg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"fIj" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"fIo" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "72" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"fID" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"fII" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"fIU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"fIZ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"fJa" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"fJg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) -"fJq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"fJr" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/obj/structure/machinery/cell_charger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"fJt" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"fJu" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"fJG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) -"fJJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"fJM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"fJZ" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"fKa" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"fKc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"fKo" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"fLo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/west_reactor) -"fLz" = ( -/obj/structure/machinery{ - density = 1; - dir = 4; - icon = 'icons/obj/vehicles/apc.dmi'; - icon_state = "apc_base_com"; - indestructible = 1; - name = "\improper M577 armored personnel carrier"; - pixel_y = -21; - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"fLG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"fLK" = ( -/obj/structure/cryofeed, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) -"fLN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"fLS" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"fLT" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"fMg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"fMh" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"fMs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fMw" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"fMN" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pill_bottle/tramadol/skillless{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/russianRed/skillless{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/storage/pill_bottle/happy{ - pixel_x = -6; - pixel_y = -4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"fMP" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - pixel_y = 7 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_y = 6 - }, -/obj/item/ashtray/bronze{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"fMV" = ( -/obj/structure/closet/secure_closet/quartermaster, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"fMW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan4/west, -/area/lv522/indoors/a_block/medical) -"fNa" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"fNm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) -"fNP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"fOa" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"fOc" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"fOd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"fOp" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"fOw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Checkpoint"; - pixel_x = 4; - pixel_y = -5 - }, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"fOM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) -"fON" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) -"fOR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"fPa" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_x = -6; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"fPf" = ( -/obj/item/xeno_egg/alpha{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/xeno_egg/alpha{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"fPk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"fPs" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"fPH" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"fPO" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"fQh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"fQo" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fQr" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"fQM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"fQN" = ( -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"fRm" = ( -/obj/structure/closet/wardrobe/medic_white, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"fRn" = ( -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"fRJ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) -"fRP" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 3.3 - }, -/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 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"fRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"fSf" = ( -/obj/structure/blocker/invisible_wall, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/sewer) -"fSk" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"fSv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/beret/eng, -/obj/item/ammo_box/magazine/nailgun/empty{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"fSP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"fTi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/bed/chair/wood/normal{ - dir = 4; - layer = 4.1; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"fTj" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fTP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"fTY" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"fUb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"fUe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"fUl" = ( -/obj/structure/surface/table/woodentable, -/obj/structure/machinery/reagentgrinder{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"fUx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"fUQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"fVc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"fVj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/walkman{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/item/device/cassette_tape/pop1{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"fWf" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"fWC" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"fWF" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"fWG" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"fWI" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"fWW" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"fXo" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"fXI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"fXK" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"fXO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"fXR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fXU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fXX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"fYF" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"fZk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"fZr" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"fZy" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"fZz" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"fZA" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"fZB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"fZJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"fZR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"fZT" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"fZX" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"gak" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"gaw" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"gaz" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "6" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gaH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"gaL" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"gaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"gaS" = ( -/obj/item/bananapeel{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -6; - pixel_y = -7 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/damage) -"gaW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gbe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"gbk" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0; - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0; - pixel_x = 11; - pixel_y = -4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"gbm" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"gbB" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"gbH" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gbM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"gbQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"gbZ" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"gci" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"gcj" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gcJ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"gcO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/colonist{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"gcR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"gcY" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gds" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"gdt" = ( -/obj/item/tool/kitchen/knife, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"gdC" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"gdK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"gdO" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/hallway) -"get" = ( -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) -"geu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) -"geC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"geH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"geL" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"geM" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"geQ" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"geZ" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"gfc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gfd" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"gfi" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger{ - pixel_y = 14 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"gfk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"gfz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"gfA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_2/ceiling) -"gfL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/cargo_container/ferret/mid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gfM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"gfP" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"ggd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv{ - layer = 3.1; - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_y = 14 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"gge" = ( -/obj/item/storage/belt/medical/lifesaver, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"ggl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ggm" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"ggC" = ( -/obj/structure/surface/table/almayer, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ggN" = ( -/obj/structure/coatrack{ - pixel_x = 12; - pixel_y = 24 - }, -/obj/structure/coatrack{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_y = 5 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 10; - pixel_y = 27 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"ggZ" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"ghl" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"ghJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Shared Dorms Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ghM" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ghP" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"gid" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gij" = ( -/obj/item/tool/wirecutters, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"giC" = ( -/obj/structure/curtain/red, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 2.1; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"giD" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/plaincake{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"giL" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"giX" = ( -/obj/structure/curtain/red, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"gjt" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"gjA" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"gjC" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"gjK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gjR" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"gjT" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"gjV" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/item/weapon/gun/boltaction{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/item/prop/alien/hugger, -/obj/structure/barricade/wooden{ - dir = 4; - layer = 4.1; - pixel_x = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"gjW" = ( -/obj/item/device/m56d_post, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gkY" = ( -/obj/structure/closet/bombcloset, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"gla" = ( -/turf/open/floor/strata/white_cyan3/southeast, -/area/lv522/indoors/a_block/medical) -"gli" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) -"glo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"glK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"glO" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"glP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"glQ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"glY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"gmd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gme" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"gmm" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"gmu" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) -"gmA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"gnb" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gnc" = ( -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gnf" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"gnh" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"gnl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"gns" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"gnH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"gnI" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"gof" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"goh" = ( -/obj/structure/largecrate/random/barrel{ - layer = 5.1; - pixel_x = 13; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"gok" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"gol" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"goB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"goT" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"goW" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"goY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"gpt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"gpv" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"gpA" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"gpN" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"gpP" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"gpT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"gqy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/hallway) -"gqA" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"grc" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"grq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"grw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"grP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"grR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"grY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"gsa" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/trash/uscm_mre, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"gse" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"gsf" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_1) -"gsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"gso" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"gsu" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"gsw" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"gsP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"gsS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"gsZ" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gtg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"gto" = ( -/obj/item/prop/helmetgarb/lucky_feather{ - pixel_x = 11; - pixel_y = 10 - }, -/obj/item/device/implanter/subdermal_armor, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"gtp" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"gts" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"gtM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/east_central_street) -"guk" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"guv" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"guB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"guE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"guT" = ( -/obj/item/stack/sheet/wood, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"gva" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"gvn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"gvG" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"gvT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"gvU" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"gvX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) -"gwb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"gwe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"gwt" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gwC" = ( -/obj/effect/alien/resin/sticky, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"gwP" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gwQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"gwX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"gxe" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"gxg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"gxh" = ( -/obj/vehicle/powerloader, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"gxn" = ( -/obj/item/stack/sheet/metal, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"gxp" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"gxJ" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/fitness) -"gxN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gxS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gxT" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"gyb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"gyd" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gyi" = ( -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_2/ceiling) -"gyF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"gyU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"gyV" = ( -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"gzb" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) -"gzc" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"gzu" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gAa" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"gAt" = ( -/obj/item/trash/barcardine, -/obj/structure/largecrate/random/mini{ - pixel_x = -7; - pixel_y = 16 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"gAC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"gAI" = ( -/obj/structure/machinery/portable_atmospherics/canister/phoron, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"gAO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"gBe" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"gBi" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"gBy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"gBB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"gBD" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "83" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"gBR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"gCg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"gCm" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"gCx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"gCJ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gCO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/radio{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/trash/hotdog{ - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"gDu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"gDB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"gDH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"gDK" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"gDL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_3"; - name = "remote door-control"; - pixel_y = 3 - }, -/obj/item/prop/colony/game, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"gDO" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"gDU" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"gDX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"gEd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"gEm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/filt) -"gEB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gEE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gEM" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"gFl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"gFp" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gFs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"gFt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"gFx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Family Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"gFO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"gFV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_entry_2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"gGj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"gGr" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"gGD" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"gGW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"gHe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"gHg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"gHm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"gHw" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"gHB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"gHN" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"gIa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"gIc" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"gIg" = ( -/mob/living/simple_animal/mouse, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"gIi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"gIv" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gIz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"gIF" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"gIP" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"gIW" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"gJe" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/grassybush{ - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"gJm" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gJC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"gJG" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "33" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"gJI" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"gKm" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"gKy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gKO" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) -"gKU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/southeast, -/area/lv522/indoors/a_block/dorms) -"gKY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bar) -"gLg" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"gLk" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"gLu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"gLI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"gMb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"gMc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"gMf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"gMw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"gMB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"gMY" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) -"gNn" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 16; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"gNo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"gNJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/bridges/op_centre) -"gNO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"gOj" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gOB" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"gOJ" = ( -/obj/item/tool/wirecutters{ - pixel_x = -1; - pixel_y = -6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"gOO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"gOS" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - layer = 3.1; - pixel_x = 13; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"gOZ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"gPe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"gPh" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"gPv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"gPV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"gQk" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"gQu" = ( -/mob/living/simple_animal/cat/kitten{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"gQv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"gQC" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"gQG" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_street) -"gQI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"gQN" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"gQV" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gRi" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"gRj" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"gRs" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"gRw" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"gRy" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"gRD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"gRF" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/apc, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"gRL" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"gRS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"gRZ" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"gSo" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) -"gSw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gSH" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) -"gTd" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"gTl" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"gTr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gTB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"gTM" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gTU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"gUb" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"gUi" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"gUj" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"gUw" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"gUx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"gUC" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"gUM" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/seeds/potatoseed, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"gUN" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"gUR" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"gUT" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"gVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"gVd" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = 2; - pixel_y = -8 - }, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/atmos/cargo_intake) -"gVf" = ( -/obj/structure/machinery/landinglight/ds2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"gVg" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"gVk" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) -"gVl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Post Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"gVn" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"gVq" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gVv" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"gVw" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"gVP" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/south_street) -"gVZ" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"gWb" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/device/cassette_tape/pop1{ - pixel_x = -7; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"gWc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"gWF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "32" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gWI" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"gWJ" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) -"gWW" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"gWY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"gXc" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"gXo" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"gXr" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"gXw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"gXz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bed/chair{ - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"gXE" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -2; - pixel_y = -8 - }, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/atmos/cargo_intake) -"gXO" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"gXT" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"gXW" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"gYc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) -"gYz" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"gYL" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"gYM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) -"gYT" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) -"gYY" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"gZa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"gZo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/southeast, -/area/lv522/indoors/a_block/medical) -"gZw" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gZD" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"gZI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) -"gZL" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"gZX" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"gZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"han" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"hao" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"har" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"hay" = ( -/obj/structure/bed/bedroll{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"haF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"haJ" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"haY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"hbh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"hbD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"hbE" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"hbO" = ( -/obj/structure/largecrate/random/case/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"hbX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"hcb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"hcs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hcu" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"hcE" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hcH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/stack/folding_barricade, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"hcO" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"hcX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"hdc" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hde" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"hdu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) -"hdy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"hdG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"hep" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"heB" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"heI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"hft" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"hfy" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"hfM" = ( -/obj/structure/platform, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) -"hfS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hfU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"hgp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"hgr" = ( -/obj/structure/girder/reinforced, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"hgy" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/tank/emergency_oxygen{ - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"hgG" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hgT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"hgY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/soap, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"hhm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/fence, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"hhs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"hhG" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/east_reactor/south) -"hhO" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/n_rockies) -"hib" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"hid" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 22 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 22 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hif" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"hiN" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"hiO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"hiX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"hjd" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"hjv" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"hjE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hjN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"hjU" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"hjW" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 11 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 13; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"hjY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/trash/ceramic_plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"hka" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/item/stack/tile/plasteel, -/obj/item/tool/wirecutters{ - pixel_x = -12; - pixel_y = -13 - }, -/turf/open/floor/plating, -/area/lv522/atmos/command_centre) -"hkq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Equipment" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"hkO" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"hld" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"hlf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"hlq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"hml" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hmr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"hmz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"hmJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"hmM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"hmW" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"hmY" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"hnf" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"hnk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"hob" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice9"; - pixel_x = -5 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) -"hoe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"hoq" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"hov" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"hoy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"hoM" = ( -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hpi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"hpk" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"hpm" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"hpu" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"hpY" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"hql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"hqF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"hqN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plaincakeslice{ - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/plaincakeslice, -/obj/structure/machinery/light, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"hqZ" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"hra" = ( -/obj/structure/largecrate/random, -/obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"hrb" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hrc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"hrd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"hre" = ( -/obj/structure/flora/jungle/planttop1, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"hsb" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hsg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) -"hsh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"hsp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/reactor_garage) -"hsE" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"hti" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"htu" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"htA" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"htV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"htW" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"htY" = ( -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"huu" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"huz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"huY" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"hvb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"hvh" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"hvs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hvx" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"hvD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"hwF" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel2"; - pixel_x = -3; - pixel_y = -10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"hwL" = ( -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"hwU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) -"hxb" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/dorms) -"hxf" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"hxm" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"hxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"hxp" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_west_street) -"hxs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"hxt" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"hxy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"hxY" = ( -/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/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"hxZ" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_west_street) -"hyk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold/small_stack, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"hyn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"hyB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"hyN" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"hyR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"hyT" = ( -/obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hzk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/fitness) -"hzx" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"hzA" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"hzG" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "65" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hzX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"hAg" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"hAs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"hAv" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"hAy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"hBe" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"hBg" = ( -/obj/structure/cryofeed, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) -"hBr" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"hBH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 11 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = -11 - }, -/obj/item/reagent_container/food/snacks/superbiteburger{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hBK" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"hBQ" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"hBY" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"hCb" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hCe" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"hCx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hCH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"hCJ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"hCX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hDa" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) -"hDn" = ( -/obj/item/stack/sheet/wood, -/obj/item/stack/rods, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"hDt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hDy" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/command_centre) -"hDB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/hallway) -"hDC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/wood/wood_broken2, -/area/lv522/indoors/b_block/bar) -"hDE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"hDI" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"hDQ" = ( -/obj/structure/prop/dam/truck, -/obj/structure/prop/holidays/wreath{ - layer = 4.1; - pixel_x = -1; - pixel_y = 16 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"hDV" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"hEn" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"hFa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"hFh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"hFt" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"hFE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hFX" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/south_street) -"hGh" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"hGk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"hGF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"hGJ" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"hGN" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"hGO" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"hGX" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"hHb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/adjustable/cable/white, -/obj/item/restraint/adjustable/cable/white{ - pixel_y = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"hHd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"hHr" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"hHO" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hHV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"hHZ" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = null; - pixel_x = -16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"hIb" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"hId" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hIp" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"hIx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"hII" = ( -/obj/item/stack/sheet/wood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"hIP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"hIS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) -"hIZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"hJa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"hJl" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"hJq" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"hJG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"hJW" = ( -/obj/docking_port/stationary/marine_dropship/lz1{ - name = "LZ1: Southwest Landing Zone" - }, -/turf/open/floor/plating, -/area/shuttle/drop1/lv522) -"hJZ" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"hKa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"hKm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"hKE" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hKG" = ( -/obj/structure/prop/invuln/ice_prefab/standalone, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"hKK" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"hKT" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"hLb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"hLo" = ( -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"hLS" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"hMb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/admin) -"hMi" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "32" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"hMH" = ( -/obj/structure/prop/invuln/remote_console_pod, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ - density = 1; - layer = 3.5; - pixel_y = -9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/shuttle/drop2/lv522) -"hMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"hMK" = ( -/obj/item/explosive/mine/active{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"hMN" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"hMT" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"hNc" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) -"hNk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"hNl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"hNB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"hNH" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"hNP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"hNR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"hNY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"hOk" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/palebush{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"hOt" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/clothing/under/suit_jacket/stowaway, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"hOx" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"hOy" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"hOz" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hOD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"hOZ" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"hPd" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hPj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"hPm" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hPC" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"hPG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hPK" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"hPM" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hPO" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hQg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hQk" = ( -/obj/structure/surface/table/almayer, -/obj/item/robot_parts/robot_component/radio{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/device/radio/off{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/device/radio/off{ - pixel_x = 5; - pixel_y = 13 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"hQt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"hQy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/engine, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 16; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"hQN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hQP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"hQR" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"hQS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"hQU" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/nw_rockies) -"hQY" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"hQZ" = ( -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"hRg" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"hRl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"hRu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hRX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"hRY" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/medical, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"hSi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"hTe" = ( -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"hTp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"hTu" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"hTH" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"hTU" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"hUx" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"hUI" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"hUZ" = ( -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hVq" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hVC" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -6; - pixel_y = 15 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"hVH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"hVJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"hVP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood/wood_broken5, -/area/lv522/indoors/b_block/bar) -"hVS" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"hVZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hWb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bodybag, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"hWg" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"hWj" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_1"; - name = "treadmill switch"; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"hWl" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"hWp" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"hWu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase{ - pixel_y = 6 - }, -/obj/item/storage/briefcase, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"hWz" = ( -/obj/structure/platform, -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"hWI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"hWN" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"hWP" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"hWS" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"hWV" = ( -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hXt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"hXG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"hYc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"hYi" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"hYv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hYM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hYV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"hZf" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/structure/window/reinforced, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"hZr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"hZC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"hZG" = ( -/obj/item/prop/colony/canister{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"hZJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) -"hZL" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"hZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"hZZ" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"iax" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - name = "\improper Chunk 'N Dump" - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"iaz" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"iaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iaU" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"iaY" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"ibc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"ibt" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - layer = 3.1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"ibu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"ibL" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"ibS" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"icb" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"icc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"icy" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"icE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"icG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"icP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood/wood_broken4, -/area/lv522/indoors/b_block/bar) -"icR" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"icT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"icY" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) -"idd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"idh" = ( -/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/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"idy" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"idH" = ( -/obj/item/device/flashlight/flare/on, -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/extended{ - current_rounds = 0; - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"idI" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"idL" = ( -/turf/closed/wall/shiva/prefabricated/reinforced/hull, -/area/lv522/oob) -"idX" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor/south) -"idZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/grown/nettle/death{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/glowshroom{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"iek" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"iel" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ien" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/oob) -"iep" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"ieD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block Bar" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"ieW" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/prop/vehicles/crawler{ - density = 0; - dir = 8; - layer = 2.0; - pixel_y = -13 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iff" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"ifn" = ( -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ifx" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"ify" = ( -/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 - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"ifB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"ifW" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"iga" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"igb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"igg" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/under/marine/reconnaissance, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Lance Corporal Martin 'Coyote' Conte" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"igv" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"igN" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"ihh" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"ihj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/clothing/suit/storage/apron/overalls{ - pixel_x = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"ihq" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"ihy" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"ihL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"iix" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"iiE" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"iiG" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"iiK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"iiV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"ija" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"ijo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) -"ijv" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"ijQ" = ( -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"ijR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"iky" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"ikZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ild" = ( -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ile" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"ill" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ilo" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"ilC" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"ilK" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"ilU" = ( -/obj/structure/prop/invuln{ - desc = "big pile energy."; - icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; - icon_state = "pile_0"; - name = "barrel pile" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"imf" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"imo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"imw" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"imO" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"imT" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"imZ" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"inp" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"int" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"iny" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"inA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"inB" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"inD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"inE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"inH" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"inQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"inS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"inT" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"inZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"iod" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"ioo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/gun/smartgunner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"iop" = ( -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) -"ioA" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"ioH" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"ipw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"ipx" = ( -/turf/open/auto_turf/sand/layer1, -/area/lv522/indoors/b_block/bridge) -"ipA" = ( -/obj/structure/surface/rack, -/obj/item/tank/oxygen, -/obj/item/tank/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ipB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"ipD" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"iqa" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"iqb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"iqc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"iqe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"iqs" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"iqw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"iqy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"iqF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"iqP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_x = -7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"iqQ" = ( -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"iqV" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"iqX" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"irz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"irQ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"irW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"irZ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"isa" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ise" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"ism" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"iss" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"isx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "95" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"isE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"isV" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"itz" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"itG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen) -"itI" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"itJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"iud" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"iue" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"iug" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 5 - }, -/obj/structure/flora/bush{ - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"iuj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"ium" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"iuq" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate{ - pixel_x = -2; - pixel_y = 12 - }, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"iuv" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"iuN" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ivc" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"ivk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/item/tool/wet_sign, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"ivl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"ivq" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "36" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ivr" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/hydro) -"ivy" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/jackhammer, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ivz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"ivJ" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"iwk" = ( -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"iwp" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/filt) -"iwr" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"iwt" = ( -/obj/structure/barricade/deployable, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iwy" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"iwE" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"iwF" = ( -/obj/structure/machinery/conveyor{ - dir = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"iwV" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ixi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"ixl" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"ixy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"ixD" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/north_command_centre) -"ixI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ixO" = ( -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"ixP" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ixQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iyr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"iyU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Garage"; - pixel_y = 26 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"izz" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"izM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"iAm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"iAv" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) -"iAy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"iAA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"iAU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"iAW" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"iAZ" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"iBh" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"iBr" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_tech, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"iBv" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "66" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"iBA" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"iBM" = ( -/obj/structure/safe{ - spawnkey = 0 - }, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/m_gift, -/obj/item/coin/diamond, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"iBN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"iBY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8; - pixel_y = 29 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"iCa" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"iCb" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"iCd" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 1; - id = "sh_dropship2"; - name = "\improper Typhoon crew hatch" - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"iCs" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"iCB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"iCF" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"iCO" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"iCT" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"iCW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iDm" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iDs" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"iDu" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/davenport{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iDD" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen/damage) -"iDF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"iDH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iDN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"iDY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iEe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Interrogation"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"iEo" = ( -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"iEx" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"iEz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"iEJ" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"iEN" = ( -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/surface/table/gamblingtable, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"iFf" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"iGf" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"iGn" = ( -/obj/structure/largecrate/random/barrel{ - layer = 3.2; - pixel_x = 2 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"iGE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iGI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) -"iGW" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"iHm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"iHo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"iHq" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"iHt" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"iHD" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iHK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"iHR" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iHV" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"iIc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"iIf" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"iIn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"iIs" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iIw" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"iIK" = ( -/obj/structure/foamed_metal, -/obj/item/explosive/grenade/custom, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"iIQ" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"iIV" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"iJu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/item/ammo_magazine/handful/shotgun, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"iJw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - layer = 3.2; - name = "Television set"; - network = null; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"iJE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iJJ" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/barricade/wooden{ - layer = 4.1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"iJZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"iKd" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"iKe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"iKn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Lockdown_Lo"; - name = "remote door-control"; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"iKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"iKF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"iKY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"iLm" = ( -/obj/structure/machinery/computer/crew/colony, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"iLA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"iLW" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"iMf" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"iMv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"iMw" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"iMC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"iMF" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"iMJ" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 1 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"iNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"iNr" = ( -/obj/structure/closet/bodybag, -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"iNu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"iNM" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"iOi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iOr" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"iOD" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/filt) -"iOY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1" - }, -/obj/structure/barricade/wooden{ - dir = 8; - layer = 4.1; - pixel_x = -24; - pixel_y = -20 - }, -/obj/structure/barricade/wooden{ - dir = 4; - layer = 4.1; - pixel_x = 15 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iPa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"iPd" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/obj/structure/largecrate/supply/floodlights{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"iPo" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"iPr" = ( -/obj/structure/machinery/power/apc/power/south{ - start_charge = 20 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"iPu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"iPE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"iPL" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"iPW" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"iQk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"iQo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"iQu" = ( -/obj/structure/coatrack{ - pixel_x = 11 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"iQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"iQz" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"iQG" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iQK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"iQL" = ( -/obj/structure/bed/bedroll{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"iRh" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"iRi" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"iRl" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"iRs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 17 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"iRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"iRU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"iRW" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"iSf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"iSl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"iSp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"iSS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"iSV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"iTm" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"iTq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_1"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_2"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_3"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_6"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"iTF" = ( -/obj/item/ammo_box/magazine/m4ra/ap/empty, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iTS" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iTW" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iUb" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iUi" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"iUk" = ( -/obj/structure/prop/dam/drill{ - layer = 3.1; - pixel_x = 13; - pixel_y = -1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"iUP" = ( -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 0; - pixel_x = -17; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"iUZ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iVm" = ( -/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 = -2; - pixel_y = -4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"iVD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"iWf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"iWo" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"iWr" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"iWL" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"iWN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"iWP" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) -"iWQ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"iWT" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = 12 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 25 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"iWV" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/chips, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"iXr" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "2" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"iXy" = ( -/obj/structure/largecrate/random/mini/med{ - pixel_x = -12; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"iXH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"iXM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"iXT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"iXZ" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"iYm" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"iYt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"iYu" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"iYC" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "30" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"iYE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"iYS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"iZo" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"iZt" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"iZI" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"iZS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"iZT" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"iZX" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) -"iZZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"jan" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"jaq" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"jas" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/mining) -"jat" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) -"jav" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"jaO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate{ - pixel_x = -1; - pixel_y = 11 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = -10 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"jaS" = ( -/obj/structure/window_frame/strata, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"jbc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"jbn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"jbI" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "smokestack"; - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jbK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"jbZ" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jcd" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/outdoors/colony_streets/south_west_street) -"jch" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"jcS" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"jda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"jdj" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"jdn" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/reagent_container/hypospray/autoinjector/emergency, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"jdW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"jea" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"jei" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"jev" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"jfh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jfn" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"jfo" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"jfp" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/east_reactor/south) -"jfq" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"jfA" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"jfC" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jfF" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"jfL" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel/far) -"jfO" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"jfZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jga" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"jgs" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"jgt" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"jgF" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/atmos/sewer) -"jgT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"jhe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"jhj" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) -"jhl" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jhr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"jhy" = ( -/obj/structure/largecrate/random/mini{ - layer = 3.1; - pixel_x = 10; - pixel_y = -7 - }, -/obj/structure/largecrate/random/mini{ - pixel_x = 7; - pixel_y = 15 - }, -/obj/structure/largecrate/random/barrel{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"jhz" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"jhF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"jhH" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"jhQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"jhV" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) -"jih" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Cargo"; - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"jiv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jiK" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"jiP" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/lipstick{ - icon_state = "lipstick_red"; - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/ashtray/glass{ - icon_state = "ashtray_half_gl"; - pixel_x = -2; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"jiQ" = ( -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"jiY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"jja" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"jjn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"jju" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"jjE" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"jjG" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"jjP" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"jkl" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"jkq" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - layer = 3.5; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"jkC" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jkJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"jlf" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"jli" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jll" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"jlx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) -"jlM" = ( -/obj/item/storage/backpack/marine/engineerpack/satchel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"jms" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jmz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"jmC" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"jmE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"jmG" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/cargo) -"jmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"jnf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"jnk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"jnx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel/far) -"jny" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, -/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"jnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"jnB" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jnC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"jnD" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"jnF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"jnL" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"jnQ" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"job" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"joj" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"jom" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"joF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"jpb" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/shotgun/large/slug, -/obj/item/storage/pouch/general/large/m39ap, -/obj/item/storage/pouch/flamertank, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"jpc" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"jpr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"jpx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"jpC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"jpK" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"jpL" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jpQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"jqa" = ( -/obj/structure/ore_box, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jql" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jqu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jqO" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"jra" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; - pixel_y = -11 - }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/flask/marine{ - layer = 3.1; - pixel_x = -2; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jrd" = ( -/obj/structure/girder/displaced, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"jru" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"jrH" = ( -/turf/open/floor/strata/white_cyan4/east, -/area/lv522/indoors/a_block/medical/glass) -"jrL" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"jrT" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jrV" = ( -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"jsd" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jsg" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/trash/plate, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LZ1_Pressuredoor"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jsh" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"jsq" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jsr" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"jsz" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "62" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"jsD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"jsM" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"jsQ" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jsV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"jtg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jtk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"jtu" = ( -/obj/structure/barricade/deployable, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jty" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"jtG" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"jtN" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = 19 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"jue" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"jus" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/obj/structure/cargo_container/arious/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jux" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"juH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"juL" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_west_street) -"juY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"jvf" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jvk" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 8; - layer = 3.2; - name = "Television set"; - network = list("military"); - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"jvo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack{ - pixel_y = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"jvu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"jvC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"jvD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"jvK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"jvP" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jvQ" = ( -/obj/item/prop/alien/hugger, -/obj/item/clothing/head/helmet/riot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen) -"jwg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jwi" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"jwq" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"jww" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"jwJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/command_centre) -"jwM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jwO" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"jwP" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"jwV" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"jxa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"jxh" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jxj" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"jxn" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"jxz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"jxD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"jxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"jxV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 8; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"jyf" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 6 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) -"jyt" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"jyJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jyM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"jyN" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"jze" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"jzh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"jzi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"jzC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 15 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 14; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 14; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"jzE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"jzF" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jzR" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"jzZ" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"jAd" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"jAl" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"jAm" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"jAz" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = -2; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"jAB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"jAE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"jAF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"jAG" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jAI" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"jAN" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "mining_secure_blast_1"; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jAV" = ( -/obj/item/prop/alien/hugger{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorm_north) -"jBt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Hubba hubba."; - icon = 'icons/obj/structures/props/posters.dmi'; - icon_state = "poster17"; - name = "\improper torn magazine page"; - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jBw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"jBy" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"jBF" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) -"jBG" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_east_street) -"jBJ" = ( -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"jBM" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"jBR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"jBS" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"jBU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"jCb" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jCc" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/item/stack/sheet/wood{ - layer = 4.1; - pixel_x = 14; - pixel_y = -4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"jCd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"jCi" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"jCs" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/east_reactor/south) -"jCu" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"jCC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 9 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"jCH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"jCT" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"jCU" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jDg" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jDn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"jDp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"jDu" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jDw" = ( -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"jDA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/structure/foamed_metal, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"jDC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"jDJ" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jDO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"jDT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"jDY" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"jEd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jEj" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/device/flash{ - pixel_y = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"jEr" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"jEu" = ( -/obj/structure/sign/safety/rad_haz, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"jEA" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"jEH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 8 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -8; - pixel_y = 15 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"jEJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"jEN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"jEV" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 2 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"jEW" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jEX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"jEZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/grown/deathberries{ - pixel_y = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"jFc" = ( -/obj/item/tool/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jFe" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"jFh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/eastleft, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"jFi" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"jFp" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jFr" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jFw" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"jFB" = ( -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"jFG" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"jFL" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"jFT" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) -"jFX" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"jGa" = ( -/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/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"jGe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"jGp" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"jGK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"jGO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"jGS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"jHb" = ( -/turf/open/gm/river, -/area/lv522/oob) -"jHi" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"jHk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"jHB" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"jHT" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"jIk" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"jIn" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/west_reactor) -"jIz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"jID" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"jIJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"jIL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jIM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"jIR" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/gm/river, -/area/lv522/oob) -"jIX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"jJp" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) -"jJu" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"jJv" = ( -/obj/item/tool/crowbar, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"jJx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) -"jJB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"jJF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jJR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/northeast, -/area/lv522/indoors/a_block/medical/glass) -"jJU" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jKp" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"jKs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"jKG" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"jKP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"jLe" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jLn" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jLr" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"jLF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"jLH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"jLQ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"jLX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"jMb" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"jMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"jMv" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"jMy" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"jMJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"jMV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) -"jMZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = -8 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"jNm" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"jNs" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"jNA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"jNB" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"jNE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/bcircuit, -/area/lv522/indoors/a_block/admin) -"jOa" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"jOb" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"jOh" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"jOk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"jOv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"jOw" = ( -/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/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"jOF" = ( -/obj/effect/acid_hole, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) -"jOG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"jOM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jOP" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/structure/machinery/vending/cola{ - layer = 3.1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"jPw" = ( -/turf/open/floor/plating, -/area/lv522/oob) -"jPC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"jPH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"jPL" = ( -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) -"jPP" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jPS" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"jQa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/dam/crane{ - icon_state = "tractor"; - name = "tractor" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"jQk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"jQs" = ( -/turf/open/floor/coagulation/icon0_8, -/area/lv522/oob) -"jQQ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"jRc" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"jRh" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"jRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"jRA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jRT" = ( -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"jRZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"jSM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"jTa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"jTf" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"jTx" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"jTz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"jTD" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"jTH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"jTV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"jUe" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"jUg" = ( -/obj/item/ammo_box/magazine/l42a/ap/empty, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"jUl" = ( -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jUn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"jUo" = ( -/obj/structure/girder/displaced, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"jUY" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Reactor_garage_2" - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) -"jVc" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"jVn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"jVq" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"jVw" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"jVH" = ( -/obj/item/paper{ - pixel_x = -4; - pixel_y = 21 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"jVR" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"jVT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"jWv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"jWT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/railgun_camera_pos, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"jXb" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"jXp" = ( -/obj/structure/prop/invuln/rope{ - pixel_x = -5; - pixel_y = 26 - }, -/obj/item/weapon/ice_axe/red{ - pixel_y = 3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jXF" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"jXL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"jXM" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"jXQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"jXT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jYe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"jYf" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"jYj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"jYk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo2"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"jYr" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"jYu" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"jYy" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"jYI" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "16" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"jYX" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"jZc" = ( -/obj/structure/flora/jungle/thickbush, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"jZm" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) -"jZo" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"jZs" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 19 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jZE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"jZR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/bridge) -"jZW" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"jZY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"kab" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"kae" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"kaB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"kaC" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"kaV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/rack, -/obj/item/tool/hand_labeler, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"kaZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) -"kba" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2" - }, -/turf/open/gm/river, -/area/lv522/oob) -"kbb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"kbB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kbH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kbK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kbS" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"kcb" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/west_reactor) -"kcd" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"kce" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"kco" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/oob) -"kcC" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"kcL" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) -"kcM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) -"kcN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"kcR" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"kdf" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"kdm" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"kdo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"kdx" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"kdy" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"kdA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"kdL" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 5.1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/oob) -"kdO" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) -"keb" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"kem" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"kep" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"keq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"kew" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"keN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"keR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"keS" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "3" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kfq" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"kfy" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"kfG" = ( -/obj/structure/prop/dam/crane/cargo{ - dir = 1; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/alien/hugger{ - pixel_y = -11 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"kfI" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kfJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/west{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"kfK" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"kfL" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kgo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"kgv" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"kgN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"kgO" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_4" - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"khp" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"khr" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"khy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = 9 - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers"; - pixel_y = -8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"khG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"khN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"khU" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"khW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -12; - pixel_y = 8 - }, -/obj/item/device/radio{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kim" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"kiN" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/nw_rockies) -"kiR" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"kiT" = ( -/obj/item/stack/medical/bruise_pack, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"kiU" = ( -/obj/item/shard{ - icon_state = "medium"; - pixel_x = -5; - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"kjb" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kjj" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -13; - pixel_y = 12 - }, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"kjp" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - indestructible = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/oob) -"kjJ" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"kjM" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"kkm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"kko" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"kku" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "68" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"kky" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"kkI" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kkW" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kld" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"kll" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-8" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"klw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"klB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"klV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"klW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"klY" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"kmd" = ( -/obj/structure/prop/turbine, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"kmj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"kmn" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kmq" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"kmr" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"kmE" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"kmG" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"kmK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"kmX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"knj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bedroom" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"knJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"knP" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"knT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_x = -6; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"koj" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"koo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) -"kor" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kox" = ( -/obj/structure/prop/server_equipment, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"koM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"koR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"kph" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) -"kpl" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kpB" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"kpD" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"kpN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"kpP" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"kqb" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/kitchen) -"kqo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"kqJ" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"kqT" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"krc" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) -"krm" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"krw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"kry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) -"krD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"krK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"krL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"ksf" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 8; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"ksk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ksp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"ksE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ksL" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kti" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"ktk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"ktp" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/oob) -"ktx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/dorms) -"ktL" = ( -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"ktP" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"ktX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"kuc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kug" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/pistachios, -/obj/item/trash/kepler, -/obj/item/trash/chips, -/obj/item/trash/popcorn, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"kus" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "59" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"kuA" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"kuD" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"kuH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"kvc" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"kvh" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"kvk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"kvt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block Bar" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"kvI" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"kwf" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"kwg" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"kwj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"kwp" = ( -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = -8; - pixel_y = 11 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = -2; - pixel_y = -13 - }, -/obj/item/prop/helmetgarb/spacejam_tickets{ - desc = "Two original, crisp, orange, tickets."; - name = "\improper Arcade Tickets"; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"kws" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"kwt" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"kwz" = ( -/obj/structure/surface/rack, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"kwJ" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/north_command_centre) -"kwK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"kwO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"kxG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kxY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"kyf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kyo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"kyB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"kyH" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"kzb" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"kzl" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"kzr" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/wy_chips_pepper, -/obj/item/trash/pistachios, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"kzu" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 4; - pixel_x = 8; - pixel_y = -5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"kzC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kzD" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"kzT" = ( -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"kAj" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/landmark/survivor_spawner/lv522_forecon_squad_leader, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kAp" = ( -/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 = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"kAx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"kAF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"kAZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kBe" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kBj" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"kBk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"kBl" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/reagent_dispensers/water_cooler{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"kBq" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"kBr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"kBv" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"kBz" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"kBB" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"kBC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"kBD" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kBF" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kBK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"kBT" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kCo" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) -"kCF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"kCG" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"kDh" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kDk" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"kDW" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"kDY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"kEc" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"kEd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"kEj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"kEN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_arm"; - name = "right arm" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"kFd" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = 17; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"kFo" = ( -/obj/item/clothing/suit/storage/marine/M3G, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"kFB" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"kFD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/colony/canister{ - pixel_y = 14 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"kFH" = ( -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"kFP" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"kFR" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"kGa" = ( -/obj/structure/largecrate/random{ - pixel_x = -5 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"kGb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"kGj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 1; - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 16; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kGl" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kGt" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"kGP" = ( -/obj/structure/bed{ - layer = 2.7; - pixel_y = -8 - }, -/obj/structure/bed{ - layer = 2.6; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kGX" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"kGZ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"kHc" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"kHh" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"kHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kHS" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"kIa" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kIf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kIj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"kIm" = ( -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"kIs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"kIE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"kIV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"kJm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"kJq" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) -"kJF" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"kJJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/buckshot/empty, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"kJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"kJO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"kJU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kKi" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"kKq" = ( -/obj/structure/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"kKB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kKW" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"kLa" = ( -/obj/item/trash/uscm_mre, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"kLl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"kLY" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"kMl" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/landing_zone_1) -"kMA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"kMF" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "25" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kMK" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"kNe" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"kNi" = ( -/obj/structure/cargo_container/seegson/mid, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"kNp" = ( -/obj/structure/machinery/cryo_cell, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"kNB" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"kOa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"kOf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"kOm" = ( -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"kOE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kOK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"kOQ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kOS" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"kOU" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kPa" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"kPO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"kPQ" = ( -/obj/structure/machinery/vending/snack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"kQJ" = ( -/obj/item/explosive/mine/active{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"kQK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kQS" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"kQW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kQZ" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_arm"; - name = "left arm"; - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/ammo_magazine/pistol/m1911{ - current_rounds = 4 - }, -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"kRb" = ( -/obj/item/weapon/telebaton, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"kRg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"kRo" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kRr" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"kRs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kRA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"kRF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"kRK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"kRM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"kRN" = ( -/obj/structure/machinery/sensortower{ - pixel_x = 6 - }, -/turf/open/floor/bcircuit, -/area/lv522/indoors/a_block/admin) -"kRQ" = ( -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"kRZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"kSk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kSm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"kSq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/weapon/gun/flamer{ - current_mag = null; - layer = 3.1 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"kSs" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 6; - pixel_y = 18 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -9; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"kSz" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kSB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"kSC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kSD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"kSR" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"kTc" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"kTn" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"kTx" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"kUc" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/suit/storage/marine/smartgunner, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"kUo" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"kUt" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"kUx" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"kUy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"kUG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/cpr_dummy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"kUJ" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"kUR" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/lever_action/r4t{ - pixel_y = 26 - }, -/obj/item/ammo_magazine/lever_action/marksman{ - layer = 3.1; - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/weapon/butterfly/switchblade{ - pixel_x = 11; - pixel_y = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"kUX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"kUY" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"kVe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"kVh" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"kVs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/device/radio/off{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"kVA" = ( -/turf/open/floor/coagulation/icon8_8, -/area/lv522/oob) -"kVG" = ( -/obj/structure/cargo_container/kelland/left, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"kVO" = ( -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"kVV" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"kWE" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"kXe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kXo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kXu" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_east_street) -"kXx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"kXD" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"kXY" = ( -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"kYm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"kYq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"kYF" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "19" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"kYH" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kZi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"kZj" = ( -/obj/item/ammo_magazine/rifle/m4ra/ap{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"kZs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"kZB" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"kZE" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"kZP" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"laN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"laU" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"laX" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8; - pixel_y = 29 - }, -/obj/structure/prop/invuln/ice_prefab{ - pixel_y = -3 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel2"; - layer = 4.2; - pixel_y = 21 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"lbf" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"lbA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"lbC" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"lbD" = ( -/obj/item/prop/colony/usedbandage{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"lbP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"lcF" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) -"lcR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"ldj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ldu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"ldz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ldA" = ( -/obj/effect/decal/cleanable/blood/splatter{ - icon_state = "gib4" - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"ldC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ldD" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ldI" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ldK" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/north_command_centre) -"ldM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"ldX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"ldY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"lei" = ( -/obj/structure/pipes/vents/pump, -/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/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"leF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"leJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) -"leV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"lfb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"lfh" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"lfo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) -"lfv" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"lfV" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 12 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"lfY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"lgk" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"lgq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"lgN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lgQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"lgR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"lhx" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"lhz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"lhK" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"lhW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) -"liq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Pressuredoor"; - name = "High Pressure Door"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/tunnel) -"liN" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ljb" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"ljq" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"ljr" = ( -/turf/closed/shuttle/elevator{ - dir = 10 - }, -/area/lv522/indoors/c_block/mining) -"ljv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ljA" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"lkj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"lko" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"lkH" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"lkK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"lkP" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"lkR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/falcon_drone{ - desc = "Some sort of fancy...toy? You're not sure.."; - pixel_x = -12 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"llt" = ( -/obj/structure/girder, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"llU" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"llX" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"llZ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"lml" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"lmx" = ( -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = 5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/structure/reagent_dispensers/beerkeg{ - layer = 3.1; - pixel_x = -3; - pixel_y = 12 - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"lmI" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"lmJ" = ( -/obj/structure/prop/dam/crane/cargo, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"lmL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Reactor Control"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lmN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"lmS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"lmY" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/south) -"lnn" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/spearhead, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"lnp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"lnL" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"lnQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"loe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"lol" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"low" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_west_street) -"loK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"loL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"lpa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"lpb" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"lpq" = ( -/obj/structure/bed/stool, -/obj/item/prop/alien/hugger, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"lpr" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"lpw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lpy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"lpz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"lpH" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"lpR" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"lpY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"lqb" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) -"lqd" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"lqz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"lqD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"lqH" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lqO" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"lrg" = ( -/obj/structure/machinery/optable, -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"lrm" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"lrS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"lsu" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"lsx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"lsC" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"lsD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"lsF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"lsG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"ltf" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"ltr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"lts" = ( -/obj/item/explosive/mine/active, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"lty" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"ltC" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"ltU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"ltY" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"lue" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"lui" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"lum" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"lun" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"luG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"luW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"lva" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv{ - pixel_y = 9 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"lvb" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"lvd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"lvm" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"lvx" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"lvH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"lvL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lvM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lvU" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"lwu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"lwM" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) -"lwV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"lwW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lwY" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"lwZ" = ( -/obj/item/ammo_box/magazine/m4ra/ap/empty, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lxm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lxz" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"lxC" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"lxL" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"lxN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) -"lxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"lxT" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lxZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lyg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"lyv" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"lyH" = ( -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"lyK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"lyN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"lyP" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"lyS" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"lzj" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges) -"lzw" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"lzB" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"lzJ" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"lzS" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs{ - pixel_y = 12 - }, -/obj/item/restraint/handcuffs{ - pixel_y = 6 - }, -/obj/item/restraint/handcuffs, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"lzT" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"lzU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"lAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lAm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness/glass) -"lAo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lAs" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"lAt" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ - layer = 4.4; - pixel_x = 13; - pixel_y = 19 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_street) -"lAy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"lAz" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lBp" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"lBw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"lBx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/hallway) -"lBy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"lBE" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"lBG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"lBR" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"lCh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lCk" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"lCs" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"lCH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) -"lDd" = ( -/obj/item/trash/uscm_mre, -/obj/structure/surface/table/almayer, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"lDW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lEv" = ( -/turf/open/floor/prison/darkpurple2/northwest, -/area/lv522/indoors/a_block/dorms) -"lEP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"lEQ" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/nw_rockies) -"lFz" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"lFO" = ( -/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"; - layer = 3.1; - name = "trash bag"; - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"lGi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"lGB" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"lGL" = ( -/obj/item/tool/surgery/hemostat, -/obj/item/tool/surgery/scalpel, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"lHm" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"lHo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"lHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.1; - pixel_x = -6; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"lHz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"lHL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"lHV" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lHY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/flask/marine, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lIh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"lIi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lIq" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_street) -"lIs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"lIy" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lIM" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor) -"lIR" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"lIT" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"lJd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"lJl" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"lJm" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"lJN" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"lJY" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"lKm" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) -"lKu" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"lKL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) -"lKN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"lLl" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"lLA" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) -"lLT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"lLU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"lMf" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"lMh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"lMn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"lMx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"lMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"lNc" = ( -/obj/structure/surface/table/almayer, -/obj/item/cpr_dummy, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"lNf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"lNi" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"lNl" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"lNn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/tool/weldingtool/simple, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"lNs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"lNx" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"lNA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"lNH" = ( -/obj/structure/machinery/light/double/blue{ - dir = 4; - pixel_x = 10; - pixel_y = 13 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"lNQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"lOi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"lOl" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"lOq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lOL" = ( -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Typhoon' flight controls"; - network = null; - pixel_y = 21 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 - }, -/obj/item/prop/almayer/flight_recorder{ - layer = 2.9; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"lPf" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"lPq" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"lPx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"lPY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/prop/colony/canister{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/prop/colony/canister{ - pixel_y = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"lQr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"lQy" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/garage) -"lQN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"lQS" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"lQW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"lRa" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"lRi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = -1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"lRE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"lRF" = ( -/obj/structure/girder, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"lRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"lSg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/warning_cone{ - pixel_x = -11; - pixel_y = 6 - }, -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 18 - }, -/obj/item/tool/warning_cone{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"lSr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"lSt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"lSF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"lSN" = ( -/obj/structure/platform_decoration, -/obj/item/reagent_container/food/drinks/flask/marine, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"lSV" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"lTd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lTi" = ( -/obj/structure/girder, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"lTo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/kitchen) -"lTQ" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"lTV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"lUh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"lUi" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"lUv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"lUJ" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"lUK" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) -"lUV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"lVp" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/kitchen/glass) -"lVs" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"lVu" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"lVx" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"lVA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/popcorn{ - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"lVB" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"lVF" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"lWf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"lWz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"lWC" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"lWD" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/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/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"lWF" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"lWH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"lWO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"lWW" = ( -/obj/item/trash/crushed_cup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"lXB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"lXF" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"lXX" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "61" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"lXY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"lYa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"lYk" = ( -/obj/structure/machinery/smartfridge/seeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"lYn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"lYD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"lYG" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"lYK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"lYR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"lZc" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"lZj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"lZm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"lZo" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges) -"lZP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"lZV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"lZZ" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"max" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"maD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"maF" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"maL" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) -"maO" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"maQ" = ( -/obj/item/stack/sheet/wood, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"mbm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"mbn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"mbr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/tray{ - pixel_x = 16; - pixel_y = 23 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 24; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/t_comm) -"mbw" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mbx" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"mbH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"mbO" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 20 - }, -/obj/structure/largecrate/random{ - pixel_x = -12 - }, -/obj/structure/largecrate/random{ - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mbV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"mco" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"mcN" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"mdn" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mdp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/tool/weldingtool, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"mdx" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"mdA" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"mdD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"mdG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mdH" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"mdI" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"mdP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"meb" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"meN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"meU" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"meV" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"mfb" = ( -/obj/item/weapon/gun/rifle/mar40/carbine, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"mfJ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"mfN" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "3" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"mfR" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"mgb" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"mgr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"mgB" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/vial, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mgJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"mgW" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"mhb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"mhE" = ( -/obj/structure/filingcabinet{ - pixel_x = -9 - }, -/obj/structure/filingcabinet{ - pixel_x = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"mhF" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"mhN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"mhT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"mhU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"mif" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"mil" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"mim" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"miT" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"miZ" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/south_east_street) -"mjn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mjs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"mjz" = ( -/obj/structure/dispenser/oxygen, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"mjF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"mjN" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"mjX" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "29" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mke" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"mkm" = ( -/obj/structure/closet/crate, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"mkt" = ( -/obj/structure/machinery/iv_drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"mkD" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mkW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"mlb" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 11 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"mld" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"mli" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"mlr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"mlE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"mlU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) -"mlX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mmA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"mmF" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"mmM" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/n_rockies) -"mmR" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "100" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mnr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"mnw" = ( -/obj/item/clothing/suit/storage/marine/M3S, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"mnT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mnU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/l42a/extended{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"mnV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"moj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/sensor_computer3, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"mol" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window{ - dir = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - icon_state = "alert:2"; - name = "inventory computer" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mop" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"mos" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"moE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"moO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness/glass) -"moT" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "86" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mpH" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"mpN" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 3.2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"mqk" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"mqx" = ( -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"mqA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"mqC" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"mqH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"mqU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"mro" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/watertank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"mrF" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"mrH" = ( -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"mrK" = ( -/obj/structure/closet/crate/explosives, -/obj/item/storage/box/explosive_mines, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mrM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"mse" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"msj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"msm" = ( -/obj/item/clothing/shoes/marine/civilian{ - name = "steel toe boots" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"msn" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"mst" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"msB" = ( -/obj/item/reagent_container/food/snacks/stewedsoymeat{ - pixel_y = -6 - }, -/obj/item/trash/sosjerky{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"mtl" = ( -/obj/item/ammo_magazine/m56d, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mtt" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"mty" = ( -/obj/structure/bed/chair, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"mtF" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mtI" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"mua" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/filt) -"muk" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"mum" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"muC" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"muJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"mvj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"mvm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"mvB" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"mvG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"mvZ" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"mwd" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"mwn" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"mwp" = ( -/obj/effect/spawner/random/tool, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"mwC" = ( -/obj/item/clothing/head/welding, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"mwE" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"mwX" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"mwY" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"mxc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"mxl" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "6" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mxE" = ( -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"mxI" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"mxJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"mxO" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/t_comm) -"mxP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"mxQ" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"myg" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"myx" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"myz" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"myA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"myE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"myF" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1) -"myS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"myV" = ( -/obj/item/clothing/suit/storage/marine/light, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"mzc" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"mzu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"mzT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"mzX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"mAg" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"mAt" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"mAD" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"mAE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = -2 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"mAR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"mAW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"mBb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"mBc" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"mBg" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"mBF" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/b_block/bar) -"mBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"mBX" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_west_street) -"mCb" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"mCj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"mCo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"mCq" = ( -/obj/item/storage/beer_pack, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"mCA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"mCR" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"mDw" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"mDH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"mEx" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"mEz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"mES" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"mET" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"mFq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"mFx" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"mFy" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"mFA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"mFG" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"mFI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"mFZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"mGb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/reactor_garage) -"mGi" = ( -/obj/structure/girder, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"mGF" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/landing_zone_2) -"mGV" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"mHb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"mHg" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"mHk" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"mHo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"mHr" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"mHv" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"mHC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mHU" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/lv522/indoors/a_block/garden) -"mIz" = ( -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"mIK" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"mIP" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) -"mIR" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"mJc" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"mJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"mJQ" = ( -/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"; - layer = 3.1; - name = "trash bag"; - pixel_x = 2; - pixel_y = 20 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"mJS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"mKf" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor) -"mKm" = ( -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"mKC" = ( -/obj/item/toy/plush/farwa{ - desc = "A Farwa plush doll. Once soft and comforting now just really wet."; - name = "Soaked farwa plush doll" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"mLo" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"mLB" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"mLO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"mLV" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ - density = 0; - layer = 3.1; - pixel_x = -1; - pixel_y = 25 - }, -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ - density = 0; - layer = 3.1; - pixel_x = 8; - pixel_y = 15 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"mLW" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ - density = 0; - layer = 3.1; - pixel_y = 18 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"mLZ" = ( -/obj/structure/prop/turbine_extras/left, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"mMa" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"mMb" = ( -/turf/open/floor/almayer/w_y1/north, -/area/lv522/oob/w_y_vault) -"mMd" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"mMp" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"mMu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"mMv" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"mMw" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"mMy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mMO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_east_street) -"mNb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) -"mNc" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"mNm" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"mNo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box/empty{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"mNV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"mNX" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"mOb" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"mOe" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"mOi" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mOy" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"mOC" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"mOE" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/north_street) -"mOH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_y = 6 - }, -/obj/structure/machinery/microwave{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"mOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"mOO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel2"; - pixel_x = 3; - pixel_y = -11 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"mPa" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"mPc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"mPh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mPj" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/sewer) -"mPm" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"mPr" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"mPu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"mPB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"mPC" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) -"mPJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"mPO" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mPR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"mPY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"mQb" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "76" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mQd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/filt) -"mQo" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"mQq" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"mQr" = ( -/obj/structure/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"mQw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"mQy" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/folder/black_random{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"mQK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"mQP" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"mRa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"mRs" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"mRw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"mRx" = ( -/obj/structure/prop/dam/drill{ - layer = 3.1; - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"mRy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mRG" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"mRN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"mRO" = ( -/obj/structure/prop/structure_lattice, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/east_central_street) -"mRS" = ( -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"mSa" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"mSe" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mSl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"mSo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"mSD" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"mSE" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"mSK" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"mST" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"mSZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mTe" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"mTf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"mTr" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"mTt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"mTz" = ( -/obj/structure/machinery/microwave, -/obj/structure/machinery/microwave{ - pixel_y = 13 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"mTD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mTE" = ( -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"mTK" = ( -/obj/structure/largecrate/supply/medicine/medkits, -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - layer = 3.1; - name = "supply crate"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"mTN" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"mTU" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"mTY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"mUh" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"mUl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"mUr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"mUB" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"mVd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"mVm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/way_in_command_centre) -"mVt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bar) -"mVE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"mWd" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison, -/area/lv522/landing_zone_2/ceiling) -"mWr" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"mWv" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "102" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"mWw" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"mWx" = ( -/obj/structure/target{ - name = "punching bag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"mWA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"mWC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mWF" = ( -/obj/item/trash/barcardine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"mWN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_west_street) -"mWT" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mXd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"mXC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"mXH" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"mXN" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"mXP" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"mXR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"mYj" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 13 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = -3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"mYH" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"mYS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"mYZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"mZd" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"mZg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"mZh" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"mZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"mZp" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"mZr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"mZs" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/watatsumi/leftmid{ - layer = 3.3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"mZA" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"mZQ" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"mZW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"mZX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"nab" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "LZ1_Lockdown_Lo"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"nau" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"nax" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"naA" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"naH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"naM" = ( -/obj/item/explosive/grenade/high_explosive/m15{ - pixel_x = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"naP" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"nba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"nbj" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"nbn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"nbx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"nbE" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"nbG" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"ncj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"nct" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"ncA" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"ncD" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_4"; - pixel_x = -16; - req_access = null - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"ncJ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"ndb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"ndd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/black_random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"ndf" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen/damage) -"ndl" = ( -/obj/structure/closet/bodybag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"ndt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ndz" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/m56d_hmg{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"ndB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"ndP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nel" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"neD" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/admin) -"neV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/maintenance_jack, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"nfe" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"nfk" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"nfF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nfP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"nfU" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"nfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"ngb" = ( -/obj/structure/surface/table/gamblingtable, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ngd" = ( -/obj/item/tool/wrench, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"ngo" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"ngp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/ashtray/bronze, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"ngx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ngD" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"ngE" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"ngG" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "64" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"ngW" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ngY" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"nhb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nhs" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"nhD" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"nic" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat, -/obj/item/tool/pickaxe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"nip" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"niu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"niQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"niU" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"niY" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"niZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Showeroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"njc" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"njj" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) -"njm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"njy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"njP" = ( -/turf/open/floor/wood/wood_broken6, -/area/lv522/indoors/b_block/bar) -"nkP" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "68" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"nkT" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_2) -"nla" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"nlz" = ( -/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ - density = 0; - layer = 2.8; - pixel_x = 12; - pixel_y = -7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"nlF" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"nlH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"nlS" = ( -/obj/structure/largecrate, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"nlV" = ( -/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ - density = 0; - layer = 2.9; - pixel_x = -6; - pixel_y = -18 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"nlW" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"nmh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"nmk" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 13 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"nmw" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = -2 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"nmG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"nmK" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"nmO" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"nmQ" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"nmY" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nnt" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"nnz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"nnB" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut/alt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"nnF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) -"nnR" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"noa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/weapon/baseballbat/metal, -/obj/item/weapon/baseballbat/metal{ - pixel_x = 5 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"noj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/t_comm) -"noq" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"noL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"noO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"noT" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"npc" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) -"npe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"npq" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"npx" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "distribution" - }, -/turf/open/floor/plating, -/area/lv522/oob) -"npz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"npD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"npT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"nqi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"nqo" = ( -/obj/item/device/flashlight/lamp{ - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"nqt" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nqu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"nqB" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "distribution"; - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"nqG" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"nqI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2) -"nqM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"nqY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bar) -"nru" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"nrz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"nrJ" = ( -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"nrP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"nrR" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nsv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"nsF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"nsK" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"ntf" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Community Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"ntq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 24 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) -"ntt" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"ntC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ntL" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) -"ntN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"ntV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"ntX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"nud" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"nuh" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"nuG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4; - pixel_y = 16 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"nuL" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nvd" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"nvj" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) -"nvn" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nvB" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"nvC" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) -"nvS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"nwd" = ( -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"nwj" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/dorms/glass) -"nwr" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"nwA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"nwE" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"nxl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nxB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"nxC" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"nxE" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"nxS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"nxU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"nxZ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"nyd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"nyn" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) -"nyv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) -"nyz" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"nyD" = ( -/obj/item/clothing/suit/storage/marine/medium/smooth, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nyH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"nyJ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"nyZ" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"nzR" = ( -/obj/item/stack/sheet/metal, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/cargo_intake) -"nzZ" = ( -/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ - density = 0; - pixel_x = -16; - pixel_y = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"nAa" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"nAq" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "63" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"nAC" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nAM" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "47" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nAN" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = -9 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_y = -3 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"nAS" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"nBe" = ( -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen/damage) -"nBs" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"nBv" = ( -/obj/item/prop/alien/hugger{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/weapon/gun/pistol/highpower{ - pixel_x = -11; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"nBy" = ( -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) -"nBD" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"nBH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"nBK" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) -"nBP" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"nBR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"nBY" = ( -/obj/item/tool/scythe, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"nCa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) -"nCe" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"nCh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"nCs" = ( -/obj/structure/window_frame/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"nCt" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"nCz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"nCF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "33" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nCH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"nCP" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nDg" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"nDk" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.9 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"nDn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"nDo" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"nDt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"nDM" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/n_rockies) -"nDR" = ( -/obj/item/tool/wrench, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"nEe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"nEh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/prop/ice_colony/hula_girl{ - layer = 3.1; - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_y = 9 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"nEv" = ( -/obj/item/trash/hotdog, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -2; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -11; - pixel_y = 12 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"nEM" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Sewer"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"nER" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"nEX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"nEY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"nEZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"nFc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"nFd" = ( -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"nFj" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"nFx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"nFN" = ( -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -8 - }, -/obj/item/tool/weldpack{ - pixel_x = -6; - pixel_y = 19 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"nFS" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nGc" = ( -/obj/effect/alien/resin/sticky, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"nGs" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/cargo_intake) -"nGw" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"nGA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) -"nGB" = ( -/obj/structure/cargo_container/kelland/right, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"nGC" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nGW" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/girder/reinforced, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nHc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"nHe" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"nHn" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"nHw" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Secure_Master_Armoury_2"; - name = "remote door-control" - }, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"nHB" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nHJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nHU" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -7; - pixel_y = 19 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 8; - pixel_y = 19 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"nIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"nIc" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"nIY" = ( -/obj/structure/machinery/light, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"nJg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"nJl" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "9" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"nJr" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"nJu" = ( -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/kitchen/damage) -"nJv" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/lone_buildings/engineering) -"nJw" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nJM" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jaccuzi. 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"; - pixel_x = -5; - pixel_y = 19; - serial_number = 16 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"nJR" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"nJV" = ( -/obj/structure/noticeboard, -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"nKd" = ( -/obj/item/stack/tile/plasteel, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"nKm" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"nKn" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"nKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/l42a{ - current_mag = null - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"nKD" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"nKI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"nKK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"nKZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"nLk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"nLm" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/dorms) -"nLt" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"nLy" = ( -/obj/item/pipe{ - dir = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"nLD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"nLO" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/sewer) -"nLV" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) -"nMl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/reactor_garage) -"nMr" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nMy" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"nMB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"nMX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"nNa" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"nNq" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"nNz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"nNC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"nNL" = ( -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle{ - pixel_x = -10; - pixel_y = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/nw_rockies) -"nNM" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"nNP" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"nOB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"nOF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"nOG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nOX" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"nPb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"nPc" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"nPo" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"nPs" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"nPE" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"nPV" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"nPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nPX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"nQd" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - id = "Reactor_entry_2"; - pixel_x = 16; - req_access = null - }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"nQk" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"nQu" = ( -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"nQv" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"nQx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"nQz" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"nQG" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"nQQ" = ( -/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 = 21 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"nQT" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"nRl" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"nRs" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"nRK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"nRL" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"nSa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nSv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"nSF" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"nSG" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"nSP" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"nTa" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"nTg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"nTi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nTk" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"nTl" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/east_reactor) -"nTn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/northwest, -/area/lv522/indoors/a_block/medical/glass) -"nTp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"nTv" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"nTD" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"nTH" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard/full_stack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"nTJ" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"nTK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"nTO" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"nUa" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) -"nUc" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"nUd" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison, -/area/lv522/landing_zone_1) -"nUp" = ( -/obj/item/stack/rods{ - pixel_y = 14 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"nUs" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/cheesie, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"nUu" = ( -/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/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"nUy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"nUE" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nUF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/largecrate/random/case/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"nUO" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"nVc" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"nVm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 16 - }, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"nVD" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nVH" = ( -/obj/item/clothing/suit/storage/jacket/marine/RO{ - name = "\improper UA jacket" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"nVN" = ( -/obj/item/ammo_magazine/flamer_tank/empty, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"nVS" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"nWh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"nWq" = ( -/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/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"nWz" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"nWH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"nWS" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nWU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/outdoors/w_rockies) -"nXg" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"nXi" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/east_central_street) -"nXC" = ( -/obj/item/tool/wrench, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"nXG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"nXO" = ( -/obj/item/ammo_box/magazine/misc/flares, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"nXU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/fitness) -"nXX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"nYa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"nYb" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 4; - pixel_y = -15 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/admin) -"nYf" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"nYl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"nYq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"nYD" = ( -/obj/structure/coatrack{ - pixel_x = -7; - pixel_y = 24 - }, -/obj/item/clothing/suit/storage/bomber{ - pixel_x = -8; - pixel_y = 28 - }, -/obj/item/clothing/shoes/laceup{ - pixel_y = 7 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"nYF" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"nYM" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"nYW" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"nZc" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) -"nZd" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"nZu" = ( -/obj/structure/machinery/computer/arcade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"nZT" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/prize/deathripley{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"oaq" = ( -/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/prison, -/area/lv522/indoors/c_block/garage) -"oat" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"oaE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/circuitboard/computer{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/circuitboard/computer{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oaH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"oaN" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 3.5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"oaY" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/east) -"obX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - req_one_access_txt = "100"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"ocm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"ocn" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"ocv" = ( -/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ - layer = 2.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"ocZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"oda" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"odd" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"odi" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"odn" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/colonist, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"odv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"odN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"odS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oea" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"oet" = ( -/obj/structure/prop/dam/crane/cargo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"oeU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"oeX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"ofi" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"oft" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/off{ - layer = 3.1; - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"ofy" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4; - pixel_x = -9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"ofB" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"ofH" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ofT" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/garden) -"ogg" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Storage"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"ogh" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"ogy" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/engineering) -"ogA" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/pipe_water{ - pixel_y = 28 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/damage) -"ogB" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"ogD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"ogL" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"ogM" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"ogU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"ohf" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"ohu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"ohv" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"ohJ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"ohK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ohY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/clothing/gloves/boxing/blue{ - pixel_x = 5; - pixel_y = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oid" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"oig" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 14 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"oij" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"oim" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"oiA" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"oiJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"oiP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"oiW" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"ojp" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"ojr" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"ojt" = ( -/obj/item/ammo_magazine/sentry{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"ojy" = ( -/obj/structure/closet/crate/trashcart{ - layer = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ojH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"ojM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"okc" = ( -/obj/structure/machinery/door_control{ - id = "Marked_6"; - name = "Cargo Shutter Control"; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/prop{ - desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "Weyland classified intelligence folder"; - pixel_y = -2 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"okA" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"okL" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"olm" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"olw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"olB" = ( -/obj/structure/window_frame/strata/reinforced, -/obj/item/stack/rods, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"olI" = ( -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"olJ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "70" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"olL" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"olX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"ome" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"omn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"omt" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ - pixel_x = -7; - pixel_y = 26 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"omP" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"omT" = ( -/obj/structure/sign/safety/radio_rad{ - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"omX" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"omZ" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"ond" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"onA" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"onC" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) -"onR" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"onX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"ooa" = ( -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"ooe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"oor" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"oow" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/device/defibrillator/compact, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"ooA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"ooB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ooC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"opa" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"opl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"opp" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"opq" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"opu" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"opA" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"opB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"opN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"opO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"opQ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"opT" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"opV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/nam{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/device/cassette_tape/pop4{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"oqh" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"oqj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"oqp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"oqt" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Canteen Airlock"; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"oqC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"oqG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"oqK" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/prop/holidays/string_lights{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"oqZ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"ora" = ( -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -17; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ore" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"orf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"orm" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"orE" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"orP" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/cargo_container/watatsumi/right, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "smokestack" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"orR" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"orU" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"orV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"osa" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"osZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"ots" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"otB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"otJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"otO" = ( -/obj/structure/platform_decoration, -/obj/structure/bed/roller, -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"ouc" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"oud" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"ouj" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/outdoors/colony_streets/south_street) -"oul" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"ouA" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Kitchen Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"ouR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor) -"ouS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/c_block/cargo) -"ovh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ovp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"ovr" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"ovA" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ovH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ovT" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"ovX" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 6 - }, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"owg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"owi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"owu" = ( -/obj/item/stack/rods{ - pixel_y = -2 - }, -/obj/structure/machinery/disposal{ - density = 0; - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/tool/mop{ - pixel_x = 13; - pixel_y = 25 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"owG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"owN" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 2.9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"owO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"owU" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"owX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"oxh" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "45" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"oxq" = ( -/obj/item/paper{ - pixel_x = 10; - pixel_y = 14 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"oxv" = ( -/obj/item/stack/sheet/metal, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"oxO" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"oxS" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"oyf" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"oyr" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"oyu" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"oyT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"oyW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"ozg" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - layer = 2.9 - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Reactor_entry_1"; - pixel_x = 5; - pixel_y = -7; - req_access = null - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ozn" = ( -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ozu" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"ozF" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"ozH" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"ozJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"ozP" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"ozU" = ( -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"oAu" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"oBf" = ( -/obj/structure/bed/chair/wheelchair, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"oBx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"oBE" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 7; - pixel_y = -12 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"oBM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"oBR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"oBS" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"oCn" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - indestructible = 1 - }, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/oob) -"oCt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"oCK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"oCP" = ( -/obj/structure/pipes/standard/tank/oxygen{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"oCQ" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"oCT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"oDk" = ( -/obj/structure/largecrate/random/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"oDt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"oDv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"oDO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"oDQ" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"oDW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"oEb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) -"oEe" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Generator Room"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"oEj" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oEu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"oEy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/weapon/gun/launcher/grenade/m81/m79, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"oEB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"oEG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"oEQ" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"oEZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"oFf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"oFi" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 23 - }, -/obj/structure/machinery/light/small{ - dir = 8; - pixel_x = -11; - pixel_y = 10 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/toilet) -"oFq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan4/north, -/area/lv522/indoors/a_block/medical) -"oFr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"oGd" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"oGs" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"oGE" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"oGF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"oGZ" = ( -/obj/item/stack/sheet/wood, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"oHf" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"oHw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/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/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"oHx" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges) -"oHJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"oHT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"oIh" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oIq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) -"oIF" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"oII" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"oIJ" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"oIS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"oJj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"oJH" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"oJS" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/cargo_intake) -"oJU" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"oKc" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"oKe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"oKn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"oKu" = ( -/obj/item/reagent_container/spray/cleaner/drone{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"oKw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"oKx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"oKR" = ( -/obj/structure/bed/roller, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"oLa" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"oLc" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"oLd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"oLo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -2; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen/damage) -"oLq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"oLy" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"oMi" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"oMo" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"oMS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"oMZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Engineering"; - pixel_y = -6 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"oNe" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"oNi" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"oNl" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"oNr" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"oNt" = ( -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"oOe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"oOn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"oOo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"oOC" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"oOH" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"oOQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"oOS" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) -"oPc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"oPk" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"oPu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"oPy" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"oPF" = ( -/obj/structure/prop/turbine_extras/border, -/obj/structure/prop/turbine, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"oPN" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9 - }, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/admin) -"oPO" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"oQb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"oQw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Electronics Storage" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oQC" = ( -/obj/structure/platform_decoration, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"oQN" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"oRb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"oRq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"oRH" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"oRO" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"oRP" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"oRU" = ( -/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ - density = 0; - pixel_x = 8; - pixel_y = 14 - }, -/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ - density = 0; - layer = 3.1; - pixel_x = 17; - pixel_y = 31 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"oSn" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/stack/sheet/wood, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"oSz" = ( -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/east_central_street) -"oSA" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/obj/item/tool/pickaxe, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"oSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oSE" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control" - }, -/obj/item/limb/hand/l_hand{ - dir = 1; - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"oTb" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"oTc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"oTn" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"oTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/nailgun/empty{ - pixel_y = 5 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"oTD" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -7; - pixel_y = 27 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"oTE" = ( -/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 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"oTX" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"oTY" = ( -/obj/structure/flora/jungle/plantbot1, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"oUe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"oUm" = ( -/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/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"oUq" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/way_in_command_centre) -"oUr" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/ceiling) -"oUA" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"oUK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"oUV" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"oVd" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"oVk" = ( -/obj/structure/largecrate/random{ - pixel_x = 1; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"oVt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"oVu" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"oVD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"oVJ" = ( -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/wishsoup{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"oVR" = ( -/obj/item/prop/alien/hugger, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"oWs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) -"oWA" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"oWH" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"oWN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oXa" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"oXe" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/hallway) -"oXm" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"oXo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_2"; - name = "remote door-control"; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) -"oXp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"oXr" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"oXx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/drinks/coffee{ - layer = 3.1; - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"oXQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"oXU" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/barricade/deployable, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"oXZ" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"oYa" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"oYf" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"oYg" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"oYp" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/leafybush{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"oYC" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_east_street) -"oYO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"oZh" = ( -/obj/structure/machinery/mill, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"oZl" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"oZo" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"oZM" = ( -/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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"oZN" = ( -/obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"oZQ" = ( -/obj/structure/machinery/floodlight, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pab" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"pag" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/largecrate/random/secure{ - layer = 3.2; - pixel_x = 7; - pixel_y = 17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"pay" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"paB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"paF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"pba" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"pbi" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Reactor_garage_1" - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) -"pbp" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"pbK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"pbN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"pbP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pcj" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"pco" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"pcq" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"pct" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"pcH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"pcK" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 12; - pixel_y = 17 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"pcP" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"pcQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/twohanded/fireaxe, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"pdc" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"pdz" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"pdG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/kitchen/damage) -"pdI" = ( -/obj/structure/surface/rack, -/obj/item/explosive/plastic, -/obj/item/explosive/plastic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pec" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"pef" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"peh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"pej" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"pet" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"peZ" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_west_street) -"pfo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"pfx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"pfN" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"pfR" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"pfX" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"pga" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "73" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pgm" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 10; - pixel_y = 21 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pgq" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"pgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"pgB" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "71" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pgK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"pgS" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"pgT" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"phj" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen/glass) -"phn" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"phw" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_street) -"phA" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 9 - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/north_street) -"phZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pif" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"pih" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_street) -"pin" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"pit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"piD" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"piE" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"piY" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pji" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pjn" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"pjo" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pjJ" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) -"pjT" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -8; - pixel_y = -6 - }, -/obj/item/paper{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/toy/prize/deathripley{ - layer = 3.1; - pixel_x = 9; - pixel_y = 19 - }, -/obj/item/toy/prize/seraph{ - layer = 3.1; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"pkg" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"pki" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pkp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"pkA" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"pkS" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"plc" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"plf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"pli" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"plj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"plk" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pln" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"plB" = ( -/obj/structure/closet/crate/miningcar/yellow, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"plL" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) -"plW" = ( -/obj/structure/pipes/unary/freezer{ - dir = 1; - icon_state = "freezer_1" - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"plX" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"pma" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"pmk" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"pml" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pmo" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"pmJ" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"pmL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/west_reactor) -"pmS" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pmT" = ( -/obj/structure/safe, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pmV" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) -"pnv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"pnC" = ( -/obj/structure/machinery/bioprinter, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"pnE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pnM" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"pnO" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pnP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"pox" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"poD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"poQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"poY" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"poZ" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"ppc" = ( -/obj/structure/prop/server_equipment/yutani_server/broken{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ppf" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pph" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"ppv" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "81" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ppC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/minihoe{ - pixel_y = -2 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 2; - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"ppD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ppK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/toy/bikehorn/rubberducky{ - pixel_x = 10; - pixel_y = 7 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"ppZ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"pqb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pqk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"pqs" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"pqD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pqG" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"pqQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"pqR" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"pqX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"pqY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/obj/item/trash/plate{ - pixel_x = 2; - pixel_y = 20 - }, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_y = 27 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"prc" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "31" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"prf" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"prm" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"prs" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"prt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"prH" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"prM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"prS" = ( -/obj/structure/powerloader_wreckage/ft, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"prW" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper{ - pixel_x = -7 - }, -/obj/item/newspaper{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"prX" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"prY" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"prZ" = ( -/obj/item/stack/sheet/metal{ - layer = 2.5; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"psy" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"psF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/mar40/lmg, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"psP" = ( -/obj/structure/closet/crate/freezer{ - layer = 3 - }, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/obj/item/reagent_container/food/snacks/grown/orange, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"psQ" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.5; - pixel_y = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"psS" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"psV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"pta" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/mre_pack/meal1{ - desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; - name = "\improper UA Prepared Meal (cornbread)"; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"ptk" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"ptl" = ( -/obj/effect/spawner/gibspawner/robot, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"ptm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"ptu" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"ptG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"pud" = ( -/obj/structure/machinery/computer/arcade{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pun" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"puq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"put" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"puF" = ( -/obj/item/ammo_magazine/smg/nailgun{ - current_rounds = 0 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"puM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/hardpoint/locomotion/van_wheels, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"puV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"puY" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pvf" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"pvn" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"pvq" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "40" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pvC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"pvS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"pvW" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -12; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"pwa" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"pwf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"pwm" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"pwu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"pwz" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pwC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"pwT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"pwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"pxb" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"pxi" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"pxk" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pxu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"pxw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"pxI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"pxO" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pye" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"pyk" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_1/ceiling) -"pyr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Mining Control" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"pyt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"pyC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) -"pyG" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"pyS" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"pyX" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"pza" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 3.1; - pixel_x = -11; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 15; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 9; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"pzo" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"pzr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"pzA" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"pzD" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 11; - pixel_y = 16 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"pzG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = 23; - pixel_y = 21 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"pAa" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pAp" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"pAw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"pAx" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"pAE" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"pAM" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "66" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pAW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"pBe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"pBj" = ( -/obj/structure/largecrate/random/mini, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"pBk" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"pBm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"pBv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"pBy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"pBC" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pBI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/cassette_tape/indie{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/storage/pouch/cassette{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"pBK" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"pBP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"pCe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"pCg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"pCj" = ( -/obj/effect/spawner/gibspawner/robot, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"pCm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"pCn" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pCv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"pCP" = ( -/obj/item/tool/hatchet, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"pCT" = ( -/obj/structure/machinery/power/terminal, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"pDr" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"pDt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) -"pDw" = ( -/obj/item/trash/barcardine, -/obj/item/tool/weldingtool, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"pDB" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "4" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pDI" = ( -/obj/item/ammo_magazine/rifle/m4ra/ap{ - current_rounds = 0 - }, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"pDP" = ( -/obj/item/stack/rods, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"pDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"pDU" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"pDW" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"pEh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"pEr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pEs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) -"pEt" = ( -/obj/structure/largecrate/supply/ammo/m41a/half{ - pixel_x = 5 - }, -/obj/item/storage/box/guncase/m41a{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/ammo_box/rounds/empty{ - layer = 3.1; - pixel_y = -15 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pEA" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"pEM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"pFh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"pFl" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"pFB" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"pFH" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"pGg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"pGh" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/colony_streets/north_street) -"pGl" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/kitchen) -"pGy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"pGC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"pGJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"pGQ" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"pGY" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"pHq" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"pHy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"pHA" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"pHE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"pHN" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"pHO" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"pHT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"pIc" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pIm" = ( -/obj/structure/closet/crate, -/obj/item/storage/xeno_tag_case, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pIy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"pIB" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pIH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"pIM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"pJb" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"pJm" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"pJr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"pJv" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"pJB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"pJW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"pJZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"pKc" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"pKk" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"pKl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand/layer1, -/area/lv522/indoors/b_block/bridge) -"pKp" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"pKB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"pKI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"pKL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"pKR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/central_streets) -"pKX" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/op_centre) -"pKY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"pLa" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"pLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"pLs" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pLu" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = 9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"pLy" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"pLz" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"pLT" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"pMa" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"pMi" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"pMs" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/card/id/visa{ - desc = "A United Americas entry visa. A rare commodity out here on the rim."; - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/spacecash/c500{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"pMz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"pMD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"pMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"pMM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"pMT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) -"pMX" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_entry_2" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"pNf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"pNs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"pNx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"pNE" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"pNY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"pOc" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/outdoors/n_rockies) -"pOd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"pOs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"pOv" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"pOz" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "65" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pOE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"pOK" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"pOU" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"pPa" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"pPo" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_3"; - pixel_x = -16; - req_access = null - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"pPt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) -"pPB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - layer = 2.6 - }, -/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"pPC" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) -"pPH" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"pPM" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pPS" = ( -/obj/item/tool/pen/clicky, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"pPX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"pQd" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pQh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"pQj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"pQl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"pQw" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"pQz" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/radio/off{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"pQA" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"pQE" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges) -"pQF" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"pQZ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"pRd" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"pRg" = ( -/obj/structure/machinery/camera/autoname/lz_camera, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"pRh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/n_rockies) -"pRm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pRo" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"pRu" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"pRv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"pRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"pRC" = ( -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"pRH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"pRI" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"pSv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_east_street) -"pSw" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"pSy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -6; - pixel_y = 15 - }, -/obj/item/trash/plate, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"pSC" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "3" - }, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 29 - }, -/obj/item/prop{ - desc = "Something about a research lab."; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "USCM classified intelligence folder" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/oob) -"pSF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"pSN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"pSQ" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"pSR" = ( -/obj/item/clipboard, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"pSS" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "100" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"pTJ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/on{ - pixel_x = 4; - pixel_y = 14 - }, -/obj/item/device/binoculars, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"pTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"pTR" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) -"pTW" = ( -/obj/item/explosive/mine/active{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"pTZ" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"pUc" = ( -/turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) -"pUm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"pUo" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"pUt" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) -"pUw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"pUG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"pUR" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"pVa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"pVm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pVn" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"pVo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"pVA" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"pVF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pVT" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"pWD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"pWH" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/east) -"pWQ" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"pWR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"pXu" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"pXL" = ( -/obj/structure/closet/basketball, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"pXQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"pXS" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"pYt" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_east_street) -"pYu" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"pYI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"pYN" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"pYO" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"pZh" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"pZm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"pZo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"pZv" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"pZA" = ( -/obj/item/storage/secure/safe{ - pixel_y = 29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"qad" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = -5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/west, -/area/lv522/indoors/a_block/hallway) -"qah" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"qam" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"qaq" = ( -/obj/effect/decal/cleanable/generic, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"qaK" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/east_central_street) -"qaO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/misc/flares{ - pixel_x = -7; - pixel_y = 16 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qba" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"qbn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"qbA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"qbG" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"qbI" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4; - pixel_y = 29 - }, -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - pixel_y = -3 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel2"; - layer = 4.2; - pixel_y = 21 - }, -/obj/structure/sign/safety/high_voltage, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"qbJ" = ( -/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/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qbK" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) -"qbR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/structure/barricade/metal{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"qbU" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"qbW" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 - }, -/obj/structure/prop/tower{ - layer = 4 - }, -/obj/structure/cable/heavyduty, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) -"qcq" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"qcy" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"qcR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"qcY" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"qdc" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"qde" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qdz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"qdD" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"qdJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"qdS" = ( -/obj/structure/bed/sofa/south/grey/left, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"qdU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"qep" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"qey" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "4" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"qeT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/bridges/op_centre) -"qeY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"qfm" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"qfo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"qfu" = ( -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"qfI" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = -14; - pixel_y = -2 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"qfJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qfK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"qfL" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qgj" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qgr" = ( -/obj/structure/machinery/light/small, -/obj/structure/ladder{ - height = 1; - icon_state = "ladder10"; - id = "hatch" - }, -/turf/open/floor/plating, -/area/lv522/oob) -"qgx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"qgL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"qho" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"qhD" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"qhO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"qhS" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"qic" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"qie" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ - dir = 2; - id = "sh_dropship2"; - name = "\improper Typhoon crew hatch" - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qif" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Casino Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"qig" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4; - pixel_x = -8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qim" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qit" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"qiN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/damage) -"qiO" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"qiQ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"qiY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Garage"; - pixel_x = -16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"qja" = ( -/obj/structure/pipes/vents/pump, -/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 = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qjb" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"qjl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"qjp" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"qjr" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"qju" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"qjC" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"qjG" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"qjO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"qkc" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 6; - layer = 3.1; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"qkg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"qkw" = ( -/obj/structure/prop/invuln/remote_console_pod, -/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ - density = 1; - layer = 3.5; - pixel_y = -9 - }, -/turf/open/floor/prison, -/area/shuttle/drop1/lv522) -"qkD" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"qkW" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"qle" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"qly" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -6 - }, -/obj/item/toy/dice{ - pixel_x = 6; - pixel_y = 17 - }, -/obj/item/toy/prize/ripley{ - pixel_x = 4; - pixel_y = 7 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qlD" = ( -/obj/structure/machinery/power/port_gen/pacman/mrs{ - layer = 3.1; - pixel_y = 6 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) -"qlR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"qma" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qmv" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"qmA" = ( -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"qmK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -13; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"qmL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 15; - pixel_y = -8 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 10; - pixel_y = -13 - }, -/obj/item/trash/ceramic_plate, -/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/t_comm) -"qmQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/newspaper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qnb" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qni" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"qnu" = ( -/obj/structure/machinery/computer/cameras{ - desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; - name = "\improper 'Tornado' flight controls"; - network = null; - pixel_y = 21 - }, -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 - }, -/obj/structure/machinery/light/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 - }, -/obj/item/prop/almayer/flight_recorder{ - layer = 2.9; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"qnD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"qnL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/gloves/marine, -/obj/item/tool/weldingtool{ - pixel_x = -4 - }, -/obj/item/tool/weldpack{ - pixel_x = 14; - pixel_y = 17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"qnM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"qnZ" = ( -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) -"qoi" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"qot" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"qox" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/medical_supply_link/green, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"qoC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"qoG" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"qpb" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/white{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/head/hardhat/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"qpe" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"qpi" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"qpn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"qpq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - layer = 3.1; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"qpz" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/central_streets) -"qpJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"qpN" = ( -/obj/item/prop/colony/canister{ - dir = 8; - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"qpS" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"qpV" = ( -/obj/structure/surface/table/almayer{ - flipped = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"qqe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"qqo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"qqr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"qqx" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"qqG" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qqJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"qqU" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"qrb" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/ausbush{ - pixel_y = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"qrg" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/indoors/c_block/mining) -"qrh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) -"qrK" = ( -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"qrS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"qsi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"qsj" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"qsr" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/vial, -/obj/structure/machinery/cell_charger, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qst" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) -"qsC" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/beakers, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qsE" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"qsH" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"qsN" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"qsO" = ( -/obj/structure/surface/table/almayer, -/obj/item/ore/gold, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qsW" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"qsY" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"qti" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"qts" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"qtx" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"qty" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qtN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qtQ" = ( -/obj/structure/machinery/door_control{ - id = "UD6"; - name = "Cargo Shutter Control" - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "53" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qtU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"quf" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"quh" = ( -/obj/structure/tunnel, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"qul" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"qun" = ( -/obj/item/hardpoint/locomotion/van_wheels{ - desc = "Integral to getting shreaded"; - name = "Lifting weights" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"qup" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"quw" = ( -/obj/item/clothing/head/welding, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"qux" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"quA" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"quD" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qvu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"qvJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"qvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"qvN" = ( -/obj/structure/prop/ice_colony/surveying_device{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qvY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qws" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/item/toy/dice/d20, -/obj/item/toy/dice{ - pixel_x = 13; - pixel_y = 9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qwz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"qwT" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/shotgun/beanbag/empty, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"qwY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qwZ" = ( -/obj/item/fuel_cell{ - layer = 3.1; - pixel_x = 3; - pixel_y = 15 - }, -/obj/item/fuel_cell{ - layer = 3.1; - pixel_x = -10; - pixel_y = 18 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qxc" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qxe" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"qxg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/toy/prize/honk{ - pixel_x = -10; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qxk" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"qxm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qxA" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"qxB" = ( -/obj/item/ammo_magazine/sniper{ - current_rounds = 0; - pixel_x = 10; - pixel_y = 12 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/ammo_magazine/sniper{ - current_rounds = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qxG" = ( -/obj/structure/girder, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"qxS" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"qxX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorm_north) -"qyv" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qyG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"qyS" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"qzn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/engi{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"qzo" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qzy" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.7 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = 6; - pixel_y = -16 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = -17; - pixel_y = -9 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/prop/invuln/fire{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"qzE" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qzG" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"qzM" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) -"qzN" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"qzQ" = ( -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"qzT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"qzU" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"qAa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"qAp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"qAt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"qAw" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/snappop{ - pixel_x = -7 - }, -/obj/item/toy/snappop{ - pixel_x = 3; - pixel_y = 11 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"qAO" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"qBb" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"qBc" = ( -/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/double{ - dir = 1; - layer = 2.9; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"qBe" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"qBq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) -"qBx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"qBC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"qBE" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"qBF" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/coagulation/icon2_0, -/area/lv522/oob) -"qBH" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"qBQ" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = -3 - }, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/oob) -"qBS" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "51" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qBY" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"qCg" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"qCm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qCw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qCA" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"qCN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"qCX" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"qCY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent5"; - pixel_y = 10 - }, -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6; - pixel_y = 29 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qDl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"qDr" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"qDw" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"qDC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"qDE" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"qDF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"qDL" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"qDR" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"qDT" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qDV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qEc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/cargo) -"qEf" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"qEi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"qEj" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"qEk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"qEx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Human Resources Office" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"qEC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"qEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"qES" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) -"qFY" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qGc" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/obj/item/clothing/head/hardhat{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qGf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"qGl" = ( -/obj/item/tool/wirecutters, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"qGC" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"qGI" = ( -/obj/structure/ore_box{ - pixel_x = 5 - }, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"qGK" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"qGL" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qGV" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"qGW" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"qGX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"qHf" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"qHj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"qHr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"qHx" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) -"qHB" = ( -/turf/open/floor/coagulation/icon8_0, -/area/lv522/oob) -"qHD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"qHI" = ( -/obj/vehicle/powerloader/jd{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qIh" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"qIm" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"qIu" = ( -/obj/structure/bed/bedroll{ - dir = 1; - layer = 6; - pixel_y = 16 - }, -/obj/item/bedsheet/ce{ - layer = 6.1; - pixel_y = 17 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"qIR" = ( -/obj/structure/machinery/computer/crew/colony{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"qIW" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "flagpole"; - layer = 4.11; - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"qJn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"qJy" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"qJz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"qJB" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qJK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qJN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"qJQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 6; - pixel_y = 14 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"qJT" = ( -/obj/structure/prop/server_equipment/yutani_server/off{ - density = 0; - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"qJY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"qKa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qKd" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"qKk" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"qKq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qKr" = ( -/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 = 21 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"qKs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qKD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"qKM" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = -4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) -"qLb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"qLA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"qLB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"qLC" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Break Room"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"qLQ" = ( -/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/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"qLT" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"qMd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"qMg" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "4" - }, -/obj/item/clothing/under/marine/officer/pilot/flight, -/obj/item/clothing/suit/storage/jacket/marine/pilot{ - layer = 3.1; - pixel_y = 2 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) -"qMk" = ( -/obj/item/fuel_cell{ - pixel_x = -8; - pixel_y = -2 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"qMo" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"qMs" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) -"qMx" = ( -/obj/item/ammo_magazine/sniper{ - current_rounds = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"qMK" = ( -/obj/structure/barricade/deployable, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qNa" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"qNh" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"qNi" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"qNl" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"qNr" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"qND" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"qNK" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper{ - layer = 3.1; - pixel_x = -7 - }, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_y = 10 - }, -/obj/item/toy/dice/d20{ - pixel_x = 10; - pixel_y = -3 - }, -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qNR" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"qOq" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"qOs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qPA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qPG" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sandwich{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"qPH" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "17" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"qPO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"qPU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"qPX" = ( -/obj/structure/fence{ - layer = 2.8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"qPY" = ( -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"qQc" = ( -/obj/structure/largecrate/guns/russian, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qQe" = ( -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"qQi" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"qQq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"qQr" = ( -/obj/item/trash/candle{ - pixel_x = 8; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"qQw" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"qQx" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/landing_zone_2) -"qQz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"qQB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qQO" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 18 - }, -/obj/item/tool/soap{ - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"qQQ" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"qQR" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"qQS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"qRd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"qRi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"qRz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/t_comm) -"qRA" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"qRB" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/ore/uranium, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"qRH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"qRI" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"qRL" = ( -/obj/structure/bed/chair/comfy, -/obj/item/stack/sheet/wood, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"qRV" = ( -/turf/open/floor/almayer/w_y0/north, -/area/lv522/oob/w_y_vault) -"qRY" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"qSm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"qSn" = ( -/obj/item/reagent_container/glass/rag, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"qSs" = ( -/obj/structure/surface/rack, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/item/clothing/under/overalls, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qSt" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"qSv" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"qSw" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"qSE" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"qSF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"qSH" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qST" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/landing_zone_1) -"qSY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Northlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"qSZ" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"qTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"qTi" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qTB" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"qTC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"qTI" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = 7; - pixel_y = 17 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"qTU" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/atm{ - pixel_y = 11 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"qUb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"qUd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"qUh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"qUr" = ( -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/dorms) -"qUw" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qUE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"qUK" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"qUL" = ( -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"qUY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) -"qUZ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"qVc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"qVq" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"qVE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/bananaseed, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"qVG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"qWf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"qWg" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"qWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/crap{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/cell/hyper{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"qWB" = ( -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"qWD" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack{ - pixel_y = 2 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"qWO" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"qWT" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) -"qWW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"qXd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"qXi" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"qXn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"qXq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/roller, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"qXH" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toy, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"qXN" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"qXP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"qXY" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"qYo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness/glass) -"qYG" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"qYK" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/m56d, -/obj/item/ammo_magazine/m56d, -/obj/item/device/m56d_gun, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"qYO" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"qYP" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"qYZ" = ( -/obj/structure/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"qZf" = ( -/obj/item/storage/belt/marine{ - pixel_x = 7; - pixel_y = 5 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"qZh" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"qZs" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"qZA" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"qZK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"qZT" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"qZY" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"rae" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) -"rax" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bar) -"raH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"raI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) -"raR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"raS" = ( -/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/holohoop{ - dir = 4 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"rbb" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"rbc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"rbj" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"rbO" = ( -/obj/structure/pipes/standard/manifold/visible{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"rbS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"rbV" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"rbX" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"rcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/poncho, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"rcr" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"rcx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"rcD" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"rcO" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1; - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"rcP" = ( -/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 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"rdg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) -"rdq" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = -4; - pixel_y = -3 - }, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/oob) -"rdF" = ( -/obj/structure/closet/crate/medical, -/obj/item/tool/portadialysis, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"rdM" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent1"; - pixel_y = 11 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"rdT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway/damage) -"reo" = ( -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"res" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"rev" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"reQ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"reZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"rfk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/dorm_north) -"rfK" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"rfT" = ( -/turf/open/floor/coagulation/icon0_0, -/area/lv522/oob) -"rgr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rgG" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"rhG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"rhN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"rhT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"ria" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) -"rib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"rif" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "Corpo Vault"; - name = "Vault Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat/marked, -/area/lv522/oob/w_y_vault) -"rij" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"ril" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"rin" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"riw" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"riL" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"riT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"rja" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"rje" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"rjn" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6; - pixel_y = 29 - }, -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2"; - pixel_y = -3 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel2"; - layer = 4.2; - pixel_y = 21 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"rjO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_1"; - name = "treadmill" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"rjS" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ - pixel_y = 2 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rkb" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"rkt" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rkB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) -"rkL" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rlc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"rlx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"rlB" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"rlJ" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"rlR" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/clothing/mask/gas, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rlV" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"rmb" = ( -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"rmd" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rmp" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"rmt" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/fitness/glass) -"rmx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"rmA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"rmF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"rmP" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"rmX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"rmY" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"rnc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"rnf" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical/glass) -"rnh" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"rnn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rnq" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/landing_zone_2) -"rns" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"rnB" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"rnG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"roe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) -"ror" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"rot" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"rou" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"rox" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"roZ" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/clothing/suit/storage/marine/medium/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"rpa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"rpf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"rpj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rpm" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"rpu" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness/glass) -"rpS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 9 - }, -/obj/item/tool/kitchen/tray{ - layer = 2.9; - pixel_y = 3 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rqg" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rqx" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"rqD" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"rqE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"rqM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"rqP" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"rqZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) -"rrf" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -2; - pixel_y = -8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"rrz" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"rsa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"rsq" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"rsv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Emergency Engineering" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"rsw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"rsF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"rsM" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"rsR" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "22" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rsV" = ( -/obj/docking_port/stationary/marine_dropship/lz2{ - name = "LZ2: Southeast Landing Zone" - }, -/turf/open/floor/plating, -/area/shuttle/drop2/lv522) -"rsX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"rtg" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"rtk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"rtr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"rtz" = ( -/obj/item/stack/sheet/wood, -/obj/item/ore/diamond, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"rtI" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/lv522/outdoors/nw_rockies) -"rtN" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"rtY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"ruc" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"ruf" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"ruk" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/admin) -"rup" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"ruv" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/clothing/head/soft/ferret, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"ruw" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"ruE" = ( -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"ruH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"ruS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"ruX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"rvc" = ( -/obj/structure/largecrate/supply{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"rvd" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"rvh" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"rvi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"rvx" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"rvA" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"rvY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/twohanded/folded_metal_chair{ - pixel_x = -9; - pixel_y = 11 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/t_comm) -"rwo" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/tile/plasteel{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"rwu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 4; - layer = 3.2; - name = "Television set"; - network = null; - pixel_y = 3 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"rwx" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"rwB" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"rwC" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"rwE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"rwH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"rwK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/machinery/light/double, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"rwL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"rwR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/barricade/handrail/wire, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"rwX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"rxa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"rxt" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"rxH" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"rxI" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_street) -"ryh" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "26" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ryA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/port_gen/pacman{ - layer = 2.9 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"ryG" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) -"ryM" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"ryQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"ryR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = -37; - pixel_y = 17 - }, -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/hallway) -"rzc" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"rzj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"rzq" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"rzB" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) -"rzR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"rAb" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"rAf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"rAr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"rAt" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rAz" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rAD" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid"; - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"rAO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"rAP" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"rBa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rBd" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"rBj" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rBk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"rBu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_container/hypospray/autoinjector/kelotane{ - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"rBz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"rBG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rBP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rBY" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) -"rCS" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"rDc" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"rDm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"rDt" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "99" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rDT" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/var3/stalkybush{ - pixel_y = 12 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"rEd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"rEx" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "22" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rEG" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"rEQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"rEZ" = ( -/obj/structure/bed/bedroll{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"rFn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"rFz" = ( -/obj/structure/curtain/medical, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"rFT" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"rGf" = ( -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"rGi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"rGk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"rGl" = ( -/obj/structure/curtain/red, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rGD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"rGE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"rGH" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) -"rGO" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"rHk" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"rHz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"rHX" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/wy_chips_pepper, -/obj/item/trash/chips, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"rIe" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"rIn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"rIt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"rID" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) -"rIN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"rJs" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 20 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"rJt" = ( -/obj/structure/largecrate/random, -/obj/item/explosive/plastic/breaching_charge{ - pixel_y = -2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"rJC" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"rJO" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"rKc" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"rKq" = ( -/obj/structure/machinery/suit_storage_unit{ - pixel_x = -2 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"rKu" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rKD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/item/tool/lighter/random{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"rKM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/prop/colony/game, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"rKW" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"rLp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"rLx" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"rLQ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "62" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rMa" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"rMd" = ( -/obj/item/weapon/gun/boltaction{ - current_mag = null; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"rMt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"rMz" = ( -/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 = 21 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"rME" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/outdoors/colony_streets/north_east_street) -"rMF" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"rMR" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"rMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"rMW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/hallway) -"rNb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"rNm" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"rNv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = -5 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"rNH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"rNM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"rOf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"rOg" = ( -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"rOi" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "windsock"; - pixel_x = 6; - pixel_y = -1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"rOC" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) -"rPo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/foamed_metal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"rPu" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"rPv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"rPC" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"rQk" = ( -/obj/structure/filtration/machine_96x96/distribution{ - density = 0; - pixel_y = 16 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"rQB" = ( -/obj/structure/closet/crate/miningcar/yellow, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/item/ore/diamond, -/obj/item/ore/diamond, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"rQL" = ( -/obj/structure/platform_decoration/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"rRu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"rRP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"rSd" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"rSw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"rSA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"rSF" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"rSH" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"rTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"rTe" = ( -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"rTq" = ( -/obj/item/prop/alien/hugger, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"rTG" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) -"rUm" = ( -/obj/structure/cargo_container/kelland/right, -/obj/item/seeds/riceseed{ - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"rUr" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"rUA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"rUO" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"rUU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rUX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"rVa" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"rVy" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"rVK" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"rVV" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/under/redpyjamas, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"rWj" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"rWr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"rWu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"rWw" = ( -/obj/item/stack/rods, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"rWI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"rWK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"rWN" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"rWP" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/t_comm) -"rWS" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"rWV" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"rXb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"rXF" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"rXH" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"rXO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"rXZ" = ( -/obj/structure/noticeboard{ - pixel_y = 29 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"rYc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) -"rYi" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"rYk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"rYp" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"rYs" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"rYz" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"rYE" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"rYF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"rZc" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"rZg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"rZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/liquidfood, -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway/damage) -"rZn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_x = 30 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"rZp" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"rZq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/landmark/corpsespawner/wy/manager, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"rZs" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"rZt" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"sag" = ( -/obj/structure/ore_box, -/obj/item/tool/weldpack{ - pixel_y = 17 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"sak" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"sat" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"saz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"saC" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"saK" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/north_command_centre) -"saY" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "flagpole"; - layer = 4.11; - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"sba" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"sbh" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_2/ceiling) -"sbk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"sbl" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sbp" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/central_streets) -"sbI" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"sbN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"sbO" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Fitness"; - pixel_y = 26 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"sbV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"scc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"scp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/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 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"scr" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"scC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"scT" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"sdg" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"sdj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"sdl" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_street) -"sdC" = ( -/obj/structure/largecrate/random/secure{ - pixel_x = -7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"sek" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"sev" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"seB" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/clothing/glasses/kutjevo, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"seF" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"sfb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"sfe" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar/red, -/obj/item/clipboard{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"sfy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"sfH" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw" - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 7 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 6 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 2 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 3 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = 9 - }, -/obj/item/reagent_container/food/snacks/grown/wheat{ - name = "straw"; - pixel_x = -6 - }, -/obj/item/clothing/suit/storage/bomber/alt, -/obj/item/clothing/suit/storage/bomber/alt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"sfI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sfO" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"sfT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"sgm" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"sgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"sgC" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"sgI" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"sgT" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/corpo) -"sgV" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"sgY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"sht" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"shD" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"shE" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) -"shF" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"sid" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"sik" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"siS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"siU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"siX" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"siZ" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/hallway) -"sja" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"sju" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/item/device/radio/marine{ - pixel_x = 10; - pixel_y = 22 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"sjy" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/security) -"sjC" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"sjE" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"sjQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"sjX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security/glass) -"sjY" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) -"skc" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"skJ" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"skL" = ( -/obj/structure/cargo_container/seegson/right, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"slq" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"slu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"slw" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"slD" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"slF" = ( -/obj/structure/machinery/squeezer, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"slH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/operating, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"slO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"smi" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"smt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"smv" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"smC" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"smG" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"smZ" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"snb" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"snj" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_street) -"snm" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"sno" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"snr" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 4.13 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/hallway) -"snG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) -"snQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/miner, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"snT" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/toilet) -"snX" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_2/ceiling) -"sod" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"sog" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) -"soh" = ( -/obj/structure/prop/vehicles{ - icon_state = "truck_damaged" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"sol" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"sop" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"sot" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"sow" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"sox" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/east_central_street) -"soL" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) -"spe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"spm" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"sps" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"spt" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"spu" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"spx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) -"spD" = ( -/obj/item/tool/crowbar, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"spJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"sqf" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) -"sqi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges) -"sqj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sqt" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"squ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"sqz" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"sqC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"sqP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"sqQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen/damage) -"srh" = ( -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/admin) -"srj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"srl" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"srp" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"srE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"srG" = ( -/obj/structure/machinery/autolathe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"srJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"srS" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"srU" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"srV" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/south_west_street) -"ssh" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"stL" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) -"stO" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) -"stW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"stX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"suc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/mining) -"suh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"sul" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"suz" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"suF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"suH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"svc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"svg" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"svh" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - name = "Medical Laboratory Operating Theatre"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"svi" = ( -/obj/structure/prop/server_equipment/yutani_server/off, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"svo" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LV522CIC_1"; - name = "remote door-control"; - pixel_y = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"svq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"svz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"svG" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"svJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"svK" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"svO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"svT" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"svW" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor) -"swe" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"swo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"swt" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"swF" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"swG" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"swH" = ( -/obj/structure/largecrate/guns/merc{ - icon_state = "case_double"; - name = "supply crate" - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/bridges/op_centre) -"swJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"sxo" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"sxp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/donut{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"sxG" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/prop/colony/canister{ - pixel_y = 11 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"sxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"sxO" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 10; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"sxY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"syr" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"sys" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"syB" = ( -/obj/structure/ore_box, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"syH" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"syU" = ( -/obj/structure/closet, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"syW" = ( -/obj/item/explosive/mine/active{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"szl" = ( -/turf/open/floor/prison/blue/northeast, -/area/lv522/indoors/a_block/hallway) -"szr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"szN" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/fitness) -"szP" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -7; - pixel_y = 24 - }, -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "70" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"szY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"sAp" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"sAr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"sAt" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"sAU" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"sBf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"sBn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"sBt" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"sBD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"sBN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"sBP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"sBR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/autopsy_scanner, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"sBX" = ( -/obj/structure/girder, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sBY" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Marshal Head Office" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"sCr" = ( -/obj/structure/bed/chair/wood/normal{ - can_buckle = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"sCG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"sCI" = ( -/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"; - layer = 3.1; - name = "trash bag"; - pixel_x = 4; - pixel_y = 21 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"sCJ" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"sCP" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"sDg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"sDq" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"sDv" = ( -/obj/structure/girder/displaced, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sDK" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = -8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"sDO" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"sDS" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/nw_rockies) -"sDU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"sEa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"sEs" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"sEx" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/command_centre) -"sEK" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/tool/pen/red/clicky, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"sER" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" - }, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"sFj" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"sFo" = ( -/obj/structure/machinery/light{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"sFu" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"sFx" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) -"sFK" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"sFL" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"sFQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"sFV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sFZ" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"sGF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"sGN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"sGP" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"sGQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"sHa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"sHB" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"sHC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"sHY" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sId" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"sIe" = ( -/obj/structure/largecrate/random/barrel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"sIj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"sIk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"sIr" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"sIv" = ( -/obj/structure/holohoop{ - density = 0; - pixel_y = 27 - }, -/obj/item/toy/beach_ball/holoball{ - pixel_x = 5; - pixel_y = -13 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"sIF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"sIS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sJh" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/north_command_centre) -"sJi" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sJl" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"sJq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"sJr" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"sJD" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sJF" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/command_centre) -"sJH" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"sJI" = ( -/obj/structure/surface/table/almayer, -/obj/item/key/cargo_train, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"sJQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/southwest, -/area/lv522/indoors/a_block/hallway) -"sKb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"sKn" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"sKx" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"sKz" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"sKJ" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/east_central_street) -"sKP" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_east_street) -"sKZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"sLa" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/item/clothing/under/CM_uniform{ - pixel_y = -2 - }, -/obj/structure/window/reinforced, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"sLh" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/large_stack, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"sLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"sLn" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/item/reagent_container/glass/beaker, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"sLu" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"sLw" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sLC" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) -"sLE" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/item/clothing/head/soft/sec, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"sLG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"sLP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) -"sLR" = ( -/obj/structure/prop/dam/van/damaged{ - layer = 3.1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sLU" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"sMa" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"sMd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"sMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"sMf" = ( -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sMw" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"sMA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"sME" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"sMN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"sMR" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"sMV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"sMY" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/item/clothing/under/blackskirt{ - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"sNd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"sNg" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_full_bl"; - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/plush/farwa, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"sNk" = ( -/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"sNl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"sNA" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"sNL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"sNQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"sNZ" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"sOa" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_street) -"sOp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"sOA" = ( -/obj/item/clothing/head/welding{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"sOM" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"sOR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"sPk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"sPm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"sPs" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"sPt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"sPw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"sPQ" = ( -/obj/structure/machinery/light, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sQi" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"sQz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"sQD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"sQN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"sRf" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"sRu" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"sRA" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"sRI" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"sRM" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel) -"sRX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/stack/sandbags/small_stack, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"sRY" = ( -/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 = 6 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"sSr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"sSs" = ( -/obj/item/ammo_box/magazine/misc/mre/empty, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"sSK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"sSM" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "5" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"sSR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"sTm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"sTq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"sTA" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"sTG" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"sTK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) -"sTR" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"sTX" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"sUs" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sUy" = ( -/obj/structure/prop/dam/truck/cargo{ - layer = 3.1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"sUT" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"sVh" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) -"sVm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c1000, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"sVr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"sVs" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"sVD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"sVJ" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"sVV" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"sVZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"sWa" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/south_east_street) -"sWe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Cargo Airlock"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"sWi" = ( -/obj/structure/surface/rack, -/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"; - pixel_x = 5; - registered_name = "John Forklift" - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"sWn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) -"sWo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"sWq" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"sWr" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"sWt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"sWz" = ( -/obj/structure/machinery/disposal, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"sWH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/foamed_metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"sWI" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"sWO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"sWQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 - }, -/obj/item/tool/kitchen/tray{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"sXd" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) -"sXk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) -"sXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/c_block/cargo) -"sXR" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"sXW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"sXZ" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"sYb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"sYg" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"sYl" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"sYm" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"sYw" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1) -"sYB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"sYH" = ( -/turf/open/floor/plating, -/area/shuttle/drop1/lv522) -"sYO" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"sYX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"sZq" = ( -/turf/open/gm/river, -/area/lv522/atmos/filt) -"sZv" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"sZK" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"sZO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"sZT" = ( -/obj/structure/surface/rack, -/obj/item/frame/table/almayer{ - pixel_y = 15 - }, -/obj/item/frame/table/almayer{ - pixel_x = 10; - pixel_y = 11 - }, -/obj/item/frame/table/almayer{ - pixel_y = 1 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tah" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"taw" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"taH" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"taJ" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 3 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"taP" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"taV" = ( -/obj/structure/machinery/conveyor{ - dir = 4; - id = "lv_gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/conveyor_switch{ - id = "lv_gym_2"; - name = "treadmill switch"; - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tbf" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"tbt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"tby" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"tbC" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"tbZ" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/north) -"tcd" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"tcA" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "28" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tcJ" = ( -/turf/closed/shuttle/elevator{ - dir = 9 - }, -/area/lv522/indoors/c_block/mining) -"tcK" = ( -/obj/vehicle/train/cargo/trolley, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"tcS" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"tcZ" = ( -/obj/effect/decal/cleanable/dirt, -/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 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"tdi" = ( -/obj/structure/prop/dam/crane, -/obj/effect/spawner/random/toolbox{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"tdk" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"tdw" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"tdz" = ( -/obj/item/book/manual/marine_law{ - pixel_x = 7 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/book/manual/marine_law{ - pixel_x = 7; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"tdL" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"tea" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"teb" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tes" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/east_central_street) -"tex" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"tez" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"teD" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"teI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"teV" = ( -/obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"tfg" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"tfi" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"tfm" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"tfI" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/landing_zone_2/ceiling) -"tfO" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"tfP" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"tgj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"tgl" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tgt" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"tgv" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"tgz" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - dir = 8; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Casino"; - pixel_x = 16 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"tgE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tgL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/atmos/way_in_command_centre) -"tgU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"thf" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"thm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tht" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"thw" = ( -/obj/item/tool/pen/blue/clicky{ - pixel_x = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"thC" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"thT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"thU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 13 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"thZ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "27" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tib" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Dining"; - pixel_y = 26 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"tic" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"tig" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"tii" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tiA" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) -"tiJ" = ( -/obj/item/explosive/grenade/incendiary/molotov, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"tiP" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tiQ" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"tiX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"tiZ" = ( -/obj/item/bananapeel{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -3; - pixel_y = -1 - }, -/obj/structure/prop/invuln/pipe_water{ - pixel_y = 11 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -7; - pixel_y = 35 - }, -/turf/open/gm/river, -/area/lv522/indoors/a_block/kitchen/damage) -"tjj" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"tjE" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"tjM" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"tjN" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"tjR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"tjV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"tkf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"tkm" = ( -/obj/structure/curtain, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"tkz" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"tkL" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - layer = 3.3; - pixel_y = 16 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"tkS" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"tlc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/bridges/corpo) -"tlg" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_west_street) -"tli" = ( -/obj/item/stack/sheet/metal, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tlr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tml" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"tmp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"tms" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"tna" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"tns" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"tnx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 6; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"tnM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"tnP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor) -"tof" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"ton" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tos" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_2/ceiling) -"tov" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_y = -7 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway/damage) -"toA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/almayer/w_y0/north, -/area/lv522/atmos/way_in_command_centre) -"toC" = ( -/obj/structure/girder, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = -8 - }, -/turf/open/floor/plating/platingdmg3, -/area/lv522/indoors/a_block/dorms) -"toF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"toJ" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"toU" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"tpa" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"tpr" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/landing_zone_2) -"tpD" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tpL" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"tpV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"tpZ" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"tqR" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"trf" = ( -/obj/structure/prop/invuln/ice_prefab/standalone{ - icon_state = "white" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"trj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"trl" = ( -/obj/item/stack/sheet/metal, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"try" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"trD" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent2"; - pixel_x = -4; - pixel_y = -3 - }, -/obj/structure/cargo_container/kelland/right{ - layer = 3 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"trI" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"trK" = ( -/obj/item/ammo_box/magazine/misc/mre, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/trash/tray{ - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"trM" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) -"trU" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"trW" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/machinery/mill, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"trZ" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/chunk) -"tsk" = ( -/obj/item/prop/colony/used_flare, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tso" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"tsN" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"tsY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"tta" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"ttb" = ( -/turf/open/floor/prison/darkpurple2/east, -/area/lv522/indoors/a_block/dorms) -"tte" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"ttf" = ( -/obj/effect/landmark/corpsespawner/forecon_spotter, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"ttk" = ( -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_leg"; - name = "right leg"; - pixel_x = 8; - pixel_y = 20 - }, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "r_foot"; - name = "right foot"; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"tts" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"ttC" = ( -/obj/item/weapon/gun/smg/nailgun, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ttM" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"ttS" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"tug" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"tum" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"tuv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"tuC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"tuF" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tuJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 11 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "LV_522_Hydro-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = -2 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"tva" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"tvc" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"tvf" = ( -/obj/structure/machinery/seed_extractor, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"tvh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"tvq" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_wy"; - layer = 3.1 - }, -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"tvu" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation_A_1"; - layer = 3.1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"tvv" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/phone_base/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Private Casino"; - pixel_y = -6 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"tvw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tvy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/storage/firstaid/fire, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"tvA" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"twb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"twP" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_west_street) -"twT" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"twU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"twX" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"twY" = ( -/mob/living/simple_animal/mouse, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"txd" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"txp" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"txH" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"txK" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"txT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"txU" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"txY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"tya" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"tyc" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"tyh" = ( -/obj/structure/dispenser/oxygen{ - layer = 4.5; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"tyk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"tyw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"tyy" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"tyF" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1/ceiling) -"tyH" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"tyK" = ( -/turf/open/floor/corsat/squares, -/area/lv522/indoors/c_block/mining) -"tyM" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tza" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"tzd" = ( -/turf/closed/shuttle/elevator{ - dir = 4 - }, -/area/lv522/indoors/c_block/mining) -"tzh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters{ - pixel_y = 6 - }, -/obj/item/weapon/wirerod{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"tzj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"tzz" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/largecrate/random/mini{ - pixel_y = 14 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tzI" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"tzR" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"tAr" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/prison, -/area/lv522/landing_zone_1) -"tAz" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"tAW" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"tAX" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"tBb" = ( -/obj/structure/prop/dam/drill, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tBi" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"tBB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"tBC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"tBH" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_east_street) -"tBQ" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tCa" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 10; - pixel_y = -2 - }, -/obj/item/trash/uscm_mre{ - pixel_y = 10 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"tCh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"tCq" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ - density = 0; - layer = 3.1; - pixel_y = 18 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"tCs" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"tCL" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 3; - pixel_y = 13 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"tCN" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/south_east_street) -"tCV" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) -"tDb" = ( -/obj/structure/fence, -/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/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"tDd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tDx" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"tDy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"tDS" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/admin) -"tEh" = ( -/obj/item/stack/rods, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"tEH" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"tET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"tFg" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tFx" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/ceiling) -"tFB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"tFM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper A-Block Fitness Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"tGb" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tGd" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tGh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"tGl" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"tGo" = ( -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"tGA" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tHd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tHJ" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"tID" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"tII" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tIQ" = ( -/obj/structure/barricade/sandbags, -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"tIR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/bridges) -"tIW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"tJa" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"tJk" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -18 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"tJy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"tJA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) -"tJB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"tJH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"tJN" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"tKe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tKl" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.2 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/east_central_street) -"tKo" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 17 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) -"tKB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"tKC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"tKE" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/mob/living/simple_animal/corgi/puppy, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"tKF" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"tKM" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"tKW" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/bridge) -"tLi" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/wy_chips_pepper, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"tLm" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"tLr" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"tLu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) -"tLw" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"tLE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"tLO" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"tLP" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tLU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tMf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"tMk" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"tMp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"tMD" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"tMP" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tMT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"tMY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"tMZ" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) -"tNc" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"tNl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"tNC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/hallway) -"tNQ" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"tOi" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"tOo" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_street) -"tOq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"tOt" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/north_east_street) -"tOx" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"tPb" = ( -/obj/structure/prop/structure_lattice, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"tPf" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"tPg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"tPh" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tPs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"tPv" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"tPA" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"tPB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"tPE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tPF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_x = -5; - pixel_y = -3 - }, -/obj/item/stack/sheet/mineral/uranium/small_stack{ - pixel_y = 7 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"tPL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"tQb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"tQi" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"tQo" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"tQS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) -"tRp" = ( -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"tRr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tRu" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"tRA" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness/glass) -"tRF" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"tRW" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) -"tSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"tSe" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tSj" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = -4; - pixel_y = 24 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"tSm" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"tSu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"tSA" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"tSF" = ( -/obj/item/trash/uscm_mre, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"tSL" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/b_block/hydro) -"tSN" = ( -/obj/structure/bed/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"tTr" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -13 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"tTs" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) -"tTv" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/way_in_command_centre) -"tTD" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/east_central_street) -"tTE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"tTK" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/medical) -"tTR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/dorms) -"tUb" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1"; - pixel_x = 7 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"tUj" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"tUq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"tUt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = -11; - pixel_y = 8 - }, -/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"; - pixel_x = 5; - registered_name = "John Forklift" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"tUC" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"tUF" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"tUL" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"tUM" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"tUN" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "69" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"tVo" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tVp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/security) -"tVq" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"tVr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"tVs" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) -"tVv" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"tVz" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/small_stack, -/obj/item/ore/uranium, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"tVM" = ( -/obj/structure/machinery/vending/walkman{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"tVR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"tVV" = ( -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/wood_broken, -/area/lv522/indoors/b_block/bar) -"tVW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"tVZ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"tWe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/hallway) -"tWq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/CMB, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"tWs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"tWx" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"tWE" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"tWO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Kitchen-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Sec-Armoury-Lockdown"; - name = "remote door-control"; - pixel_x = -7; - pixel_y = -2 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"tXf" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"tXW" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/south_east_street) -"tYa" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "25" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"tYG" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"tYZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"tZa" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) -"tZf" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/large_stack, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"tZh" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/south_west_street) -"tZk" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"tZt" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"tZv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"tZF" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"uaf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"uag" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/north) -"uar" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"uaw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"uaF" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"uaI" = ( -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"uaS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"uaY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"ubg" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ubn" = ( -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"ubq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"ubr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"uby" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"ubD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ubJ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ubQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ucg" = ( -/obj/item/stack/rods, -/obj/item/shard, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"ucl" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"ucn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"ucC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"ucE" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ucH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"ucM" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"udi" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"udA" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"udF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"udI" = ( -/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/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"udM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"udO" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical/glass) -"udP" = ( -/obj/structure/machinery/washing_machine{ - density = 0; - pixel_x = -9; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"udX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"ueg" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"ueh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ues" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"uet" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"uew" = ( -/obj/item/tool/screwdriver, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"uey" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"uez" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"ueA" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"ufu" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"ufA" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"ufP" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"ufR" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"ufY" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/squares, -/area/lv522/oob) -"uge" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"ugI" = ( -/obj/structure/surface/rack, -/obj/item/ore/uranium, -/obj/item/ore/uranium, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"ugN" = ( -/obj/item/storage/backpack/marine/satchel/scout_cloak, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"ugR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"ugT" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"ugU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Casino Airlock"; - welded = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"ugV" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"ugX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"uhl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/uscm_mre{ - pixel_x = -12; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"uhv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"uhx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"uhA" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/obj/structure/machinery/light, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uie" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"uii" = ( -/obj/structure/surface/rack, -/obj/item/hardpoint/locomotion/van_wheels, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"uiA" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uiE" = ( -/obj/item/tool/crowbar, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/north_west_street) -"uiK" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"uiM" = ( -/turf/open/floor/prison, -/area/lv522/landing_zone_1) -"uiS" = ( -/obj/structure/window_frame/strata, -/obj/item/shard, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/corpo) -"uiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/east_reactor/south) -"uja" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"uje" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"ujg" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor/south) -"ujo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"ujv" = ( -/obj/item/clothing/accessory/red, -/obj/item/clothing/under/liaison_suit/field{ - pixel_x = -4; - pixel_y = 9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"ujw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/soap{ - pixel_x = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/stack/nanopaste{ - pixel_x = 8; - pixel_y = 15 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"ujy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"ujP" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"ujR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"ujS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"ujZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) -"uka" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"ukb" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"uko" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"ukp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/effect/spawner/random/powercell, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"uks" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"ukw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"ukK" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -10; - pixel_y = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"uld" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical) -"ulk" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) -"ulE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Dorms And Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"ulN" = ( -/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/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ulZ" = ( -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"umf" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) -"umg" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"ums" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"umL" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) -"umQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"umR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"umV" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"unf" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"unt" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/north_command_centre) -"unC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"unK" = ( -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical/glass) -"unM" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"unS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uoc" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "53" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uog" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"uok" = ( -/obj/structure/prop/invuln{ - desc = "big pile energy."; - icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; - icon_state = "pile_0"; - name = "barrel pile" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uor" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_1/ceiling) -"uoD" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"uoI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_east_street) -"upr" = ( -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"upu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"upz" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"upC" = ( -/obj/structure/surface/rack, -/obj/item/ore/coal, -/obj/item/ore/coal, -/obj/structure/machinery/light/double, -/obj/item/ore/silver, -/obj/item/ore/silver, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"upF" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"upK" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"upT" = ( -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 16 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"upZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"uqa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uqd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uqk" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel"; - pixel_y = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"uqn" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"uqo" = ( -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"uqy" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/donut{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 7; - pixel_y = -4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"uqD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uqP" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - pixel_x = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"urd" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"urh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"urv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window{ - dir = 2 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"urM" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"urS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"urW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"usq" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"utb" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"utq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"utv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) -"utO" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/landing_zone_1) -"utR" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"uuf" = ( -/obj/item/prop/colony/usedbandage{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) -"uuy" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"uuB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"uuD" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/t_comm) -"uuH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"uuL" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"uuY" = ( -/obj/structure/machinery/optable{ - density = 0; - pixel_x = 16; - pixel_y = -6 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"uvb" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgibleg" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/damage) -"uvc" = ( -/obj/structure/bed/bedroll{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"uvg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"uvi" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/clothing/shoes/marine, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_foot"; - name = "left foot"; - pixel_x = 5; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/corpo) -"uvw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uvA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) -"uvC" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/buritto, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"uwt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"uwF" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/colony_streets/north_east_street) -"uwT" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"uwX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp{ - pixel_x = -11; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"uxd" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"uxt" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"uxB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uxD" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) -"uxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"uxO" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"uxT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"uxU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uyj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"uyw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"uyG" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"uyN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/clothing/head/helmet/marine/scout{ - armor_bullet = 5; - armor_melee = 15; - desc = "A custom helmet designed for USCM Scouts. Looks like this one has seen some action."; - name = "\improper Battered M3-S light helmet"; - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/weapon/gun/pistol/m1911, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"uyP" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"uyR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"uzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"uzq" = ( -/obj/structure/prop/vehicles/crawler, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"uzI" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/space) -"uzS" = ( -/turf/closed/shuttle/dropship3/tornado, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uAa" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"uAb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"uAm" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"uAr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"uAv" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"uAG" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"uAO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uBe" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_1) -"uBm" = ( -/obj/structure/girder, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/east_central_street) -"uBt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/used_flare, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"uBB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/lv522/indoors/lone_buildings/chunk) -"uBQ" = ( -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"uBV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"uCo" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"uCE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_west_street) -"uCF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper A-Block Dorms And Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"uDb" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"uDs" = ( -/obj/item/clothing/head/CMB, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"uDC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"uDF" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 12; - pixel_y = -7 - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_street) -"uDT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"uDU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"uEr" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEt" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "UD6"; - name = "\improper Shutters" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uEB" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"uEE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"uET" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uFf" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"uFz" = ( -/obj/item/clipboard, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"uFB" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"uFR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"uGd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"uGE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"uGT" = ( -/obj/item/explosive/mine/active, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"uHq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"uHt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical/glass) -"uHy" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"uHH" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"uHQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"uHW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uIe" = ( -/obj/structure/ore_box, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"uIk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"uID" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"uIJ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"uIZ" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/casino) -"uJv" = ( -/obj/structure/curtain/red, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uJy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"uJJ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "23" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"uJT" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"uJU" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) -"uJW" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"uKa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"uKi" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/n_rockies) -"uKl" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"uKn" = ( -/obj/structure/powerloader_wreckage/jd, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"uKo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"uKw" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"uKE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uKR" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"uKS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uLc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"uLg" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"uLn" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uLw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"uLz" = ( -/obj/effect/landmark/hunter_secondary, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"uLE" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; - icon_state = "alert:2"; - name = "inventory computer" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uLF" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"uLR" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"uMb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"uMc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"uMl" = ( -/obj/item/storage/bag/ore, -/obj/structure/surface/rack, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"uMr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"uMw" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms/glass) -"uMM" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"uMO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"uNd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"uNg" = ( -/obj/item/tool/pickaxe, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"uNi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Dorms And Office Airlock"; - welded = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"uNp" = ( -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"uNt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"uNu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand/layer1, -/area/lv522/indoors/b_block/bridge) -"uNz" = ( -/obj/item/storage/toolbox/electrical{ - pixel_y = -6 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -11; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"uOb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"uOe" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"uOj" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - layer = 3.1; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"uOn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"uOp" = ( -/obj/structure/largecrate/random/barrel/green{ - pixel_x = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"uOs" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"uOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"uOy" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"uOz" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"uOC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"uOD" = ( -/obj/structure/bed/stool, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"uOJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"uOX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) -"uPc" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"uPl" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"uPx" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"uPy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"uPD" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"uPT" = ( -/obj/structure/barricade/sandbags, -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_street) -"uQf" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"uQn" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"uQp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"uQr" = ( -/obj/structure/bed/chair/wood/normal, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"uQs" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"uQt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"uQI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"uQW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"uRh" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"uRs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/mucus, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"uRz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_east_street) -"uRC" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/admin) -"uSo" = ( -/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/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"uSv" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/corpo) -"uSx" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"uSG" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "16" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"uSJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"uSY" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"uSZ" = ( -/obj/item/toy/beach_ball/holoball{ - pixel_x = 7; - pixel_y = -9 - }, -/obj/structure/holohoop{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"uTd" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"uTh" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"uTs" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/north) -"uTv" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/corpo) -"uTY" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"uUb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"uUj" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security/glass) -"uUk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"uUB" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"uUX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"uVy" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/damage) -"uVI" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"uVL" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/filt) -"uWb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"uWk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"uWw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"uWD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"uWO" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"uWV" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"uWW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/central_streets) -"uXp" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"uXq" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"uXy" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"uXC" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"uXN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) -"uXO" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"uXR" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"uYg" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"uYk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"uYu" = ( -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"uYH" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/potatoseed{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/seeds/potatoseed, -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"uYU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"uZq" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"uZt" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"uZT" = ( -/obj/structure/largecrate/random/mini, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"vae" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"vaz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"vaZ" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -10; - pixel_y = 25 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vbo" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"vbF" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"vbX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"vbY" = ( -/obj/item/cell/apc{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/cell/hyper{ - pixel_y = -2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"vbZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"vcg" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"vch" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"vcn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"vcx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vcy" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"vcC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"vcK" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vcL" = ( -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"vcR" = ( -/obj/structure/largecrate/random/mini/med, -/turf/open/floor/prison, -/area/lv522/landing_zone_2/ceiling) -"vcT" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/op_centre) -"vcU" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Executive Suite" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/executive) -"vda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"vdf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vdq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"vdG" = ( -/obj/structure/tent/big, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"vdS" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vdW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness/glass) -"vdZ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"vem" = ( -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"vex" = ( -/obj/structure/machinery/computer/cameras/wooden_tv{ - desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; - dir = 1; - name = "Television set"; - network = null; - pixel_x = -1; - pixel_y = 7 - }, -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ - pixel_x = -5; - pixel_y = 23 - }, -/obj/item/tool/wrench{ - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/wood_broken, -/area/lv522/indoors/b_block/bar) -"vez" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) -"veH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"veK" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"veP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"veS" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"veT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"veY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 8; - name = "\improper Dormitories" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"vfj" = ( -/obj/structure/bed/stool{ - buckling_y = 14; - pixel_y = 14 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"vfp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) -"vfw" = ( -/obj/structure/closet/crate/green, -/obj/item/device/sentry_computer, -/obj/item/defenses/handheld/sentry, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vfy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"vfC" = ( -/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/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"vfQ" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) -"vfW" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"vgb" = ( -/obj/structure/platform, -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate"; - layer = 3.1; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vgc" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms/glass) -"vgh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vgq" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "40" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vgw" = ( -/obj/structure/platform, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vgx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/admin) -"vgz" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"vgM" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"vha" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_west_street) -"vhd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"vhf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"vhm" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"vhp" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"vhP" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"viA" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"viB" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"viC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"viE" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"viG" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"viN" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"viQ" = ( -/obj/structure/prop/invuln/fire{ - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/prop/invuln/fire{ - pixel_x = -8; - pixel_y = 10 - }, -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "33" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"viR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"vjh" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_street) -"vjl" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) -"vjr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vjw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vjz" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vjB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vjE" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_x = 11; - pixel_y = 24 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vjG" = ( -/obj/structure/largecrate/random{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"vjH" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"vjP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"vjQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/adv/empty, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vjR" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"vjU" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"vjV" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/garden) -"vjW" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) -"vkg" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_1) -"vkj" = ( -/obj/structure/bed/bedroll{ - dir = 5 - }, -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"vkx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"vkD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"vkJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"vkT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"vlf" = ( -/obj/structure/machinery/computer/operating, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"vlm" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"vlp" = ( -/obj/item/pipe, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vlq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"vlM" = ( -/obj/item/ammo_magazine/pistol/m1911{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/structure/platform, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"vlX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"vmq" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"vmr" = ( -/obj/structure/foamed_metal, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"vmv" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vmB" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"vmG" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 14; - pixel_y = 9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"vmJ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"vmQ" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/watatsumi/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"vmY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) -"vnf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vnh" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"vnu" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"vny" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"vnN" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vnW" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vog" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"vov" = ( -/obj/item/prop/alien/hugger{ - pixel_x = -6 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"vpa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"vpe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vpp" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/landing_zone_2/ceiling) -"vpA" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"vpD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vpJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"vqm" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vqp" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/west) -"vqq" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"vqs" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"vqv" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"vqC" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/west, -/area/lv522/indoors/a_block/medical/glass) -"vqZ" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vra" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"vrf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vrk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vrx" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"vrC" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"vrF" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"vrJ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"vrN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"vrW" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vsz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vsP" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - layer = 4.3; - pixel_y = 13 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vsW" = ( -/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/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vtc" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"vti" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"vto" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"vtG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"vtR" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/liquid_fuel, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vuc" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vuj" = ( -/obj/structure/prop/vehicles{ - icon_state = "van_damaged" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"vul" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"vut" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"vuO" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) -"vuR" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/device/radio{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vvm" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vvy" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vvE" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vvH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"vvU" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"vwf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"vwh" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"vwl" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vwn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"vws" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vwx" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"vwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"vwO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vwS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"vxa" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/under/colonist, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vxf" = ( -/obj/item/pipe{ - dir = 9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"vxg" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"vxM" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vyb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) -"vyz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms/glass) -"vyD" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bar) -"vzl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vzn" = ( -/obj/item/clothing/shoes/jackboots{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bar) -"vzp" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vzx" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vzy" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/cargo_container/watatsumi/leftmid{ - layer = 3.3 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"vAn" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"vAt" = ( -/obj/structure/platform_decoration, -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"vAz" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/matches{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"vAT" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"vBc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vBB" = ( -/obj/structure/surface/table/gamblingtable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"vBJ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vBK" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vBN" = ( -/obj/structure/bed/chair, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"vBT" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vCh" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"vCu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"vCx" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vCz" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"vCG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"vCQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/tool/lighter/random{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"vDa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"vDf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vDl" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"vDr" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"vDw" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"vDA" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"vDP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vDZ" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"vEe" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"vEf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"vEp" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vEW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"vFd" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"vFD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"vFH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"vGb" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"vGd" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_street) -"vGk" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vGp" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"vGv" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"vGG" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"vHe" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vHr" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"vHv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vHw" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"vHA" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_east_street) -"vHN" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"vHO" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"vHT" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vIp" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) -"vIw" = ( -/obj/item/tool/extinguisher, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vIy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"vIz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/reactor_garage) -"vJj" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"vJr" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"vJB" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = -8; - pixel_y = 14 - }, -/obj/item/clothing/accessory/armband/engine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vJD" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/casino) -"vJK" = ( -/obj/structure/girder, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"vJO" = ( -/obj/structure/cargo_container/kelland/right{ - layer = 2.9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"vJU" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"vKe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"vKf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"vKt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/central_streets) -"vKw" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"vKO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vKP" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"vKR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"vLc" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) -"vLg" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"vLk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) -"vLq" = ( -/obj/structure/phone_base/colony_net{ - dir = 4; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Security"; - pixel_x = -16 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"vLs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"vLt" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"vLw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Garage Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/garage) -"vLF" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"vLP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/faxmachine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"vMf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vMu" = ( -/obj/item/weapon/gun/boltaction, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"vMJ" = ( -/obj/structure/surface/table/gamblingtable, -/obj/item/toy/deck{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"vNb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "East_Lock"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/hallway) -"vNi" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"vNk" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/casino) -"vNo" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vNq" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) -"vNr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"vNu" = ( -/obj/item/storage/firstaid/o2, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"vNA" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/recharge_station, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"vNO" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"vNR" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vOb" = ( -/obj/structure/machinery/door_control{ - id = "mining_secure_blast_1"; - name = "Blast Door Control" - }, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) -"vOe" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "86" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vOk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"vOl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"vOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"vOx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"vOz" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"vON" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen) -"vPg" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/engineering) -"vPk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"vPs" = ( -/obj/structure/prop/dam/crane/damaged, -/obj/structure/platform, -/obj/item/prop/colony/canister{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vPz" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"vPN" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"vPO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 8; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vPT" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/kitchen/damage) -"vPU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"vQx" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"vQQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) -"vRd" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/stack/rods, -/obj/item/stack/sheet/metal, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vRi" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "74" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"vRz" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"vRP" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"vSd" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"vSi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/east_central_street) -"vSM" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vSN" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/central_streets) -"vSU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"vTh" = ( -/obj/structure/window_frame/strata, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"vTn" = ( -/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; - layer = 2.9 - }, -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.2; - pixel_x = 12; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"vTO" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"vTP" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vTS" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"vTZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"vUa" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vUd" = ( -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"vUe" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/bridge) -"vUf" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/structure/foamed_metal, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"vUi" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"vUk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"vUL" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vUN" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 6 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"vVd" = ( -/obj/structure/cargo_container/kelland/left, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"vVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) -"vVB" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/platingdmg1, -/area/lv522/indoors/a_block/admin) -"vVD" = ( -/obj/structure/coatrack{ - pixel_x = 10; - pixel_y = 9 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ - pixel_x = 8; - pixel_y = 13 - }, -/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vVE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"vVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/admin) -"vVS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"vWl" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"vWz" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan4/east, -/area/lv522/indoors/a_block/medical) -"vWI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"vWQ" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"vXc" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vXr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Marshal Office Armory" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Sec-Armoury-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"vXH" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"vXP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"vXS" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/bridges/op_centre) -"vXY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"vYo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/dorms) -"vYK" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"vYL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"vYZ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "75" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"vZl" = ( -/turf/open/floor/wood/wood_broken7, -/area/lv522/indoors/b_block/bar) -"vZy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"vZO" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"vZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"vZR" = ( -/obj/structure/prop/ice_colony/flamingo{ - dir = 5; - pixel_x = 15 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"vZS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"wao" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"wav" = ( -/obj/effect/decal/cleanable/blood/xeno, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"waH" = ( -/obj/structure/girder, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/darkpurple2/west, -/area/lv522/indoors/a_block/dorms) -"waJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"waQ" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"waZ" = ( -/obj/item/trash/uscm_mre, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"wbj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_x = 13; - pixel_y = 11 - }, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"wbm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"wbt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"wbz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/landing_zone_1/tunnel/far) -"wbQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_y = -6 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wbR" = ( -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"wbS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/w_y1/north, -/area/lv522/atmos/way_in_command_centre) -"wcb" = ( -/obj/structure/ore_box, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) -"wcg" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"wcj" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/largecrate, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"wck" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"wcB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) -"wcI" = ( -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/casino) -"wcM" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"wdd" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wde" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) -"wdj" = ( -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) -"wdH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"wdP" = ( -/turf/open/floor/strata/white_cyan4/west, -/area/lv522/indoors/a_block/medical/glass) -"wdY" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"wes" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"weJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"weM" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - pixel_x = 20 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = -9; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"weQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"weR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/dorms) -"weZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Security Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Sec-Kitchen-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"wfd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Corpo-Bridge-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/security) -"wfl" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"wfo" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wfG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_west_street) -"wfP" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"wfT" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"wfW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"wge" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"wgf" = ( -/obj/structure/girder/displaced, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"wgi" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/east_reactor/south) -"wgn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) -"wgH" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wgR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"wgW" = ( -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"whE" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - layer = 3.1; - pixel_x = 20 - }, -/obj/structure/largecrate/random{ - pixel_x = -11; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wig" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wij" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"wiy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"wiz" = ( -/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, -/area/lv522/indoors/a_block/fitness/glass) -"wiE" = ( -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wiF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "101" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wiI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/security) -"wiU" = ( -/obj/item/pipe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"wiY" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"wja" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"wjf" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"wjj" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wjk" = ( -/obj/structure/bed/alien, -/obj/item/pipe{ - pixel_x = -6 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wjB" = ( -/obj/structure/largecrate/random, -/obj/structure/largecrate/random{ - pixel_y = 18 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wjE" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"wjF" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - pixel_x = 6 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wjO" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, -/obj/structure/cargo_container/kelland/left{ - layer = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"wko" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"wku" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"wkW" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) -"wlo" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"wlw" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 13 - }, -/obj/item/ashtray/bronze{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"wlx" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"wly" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wlL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"wlU" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"wmj" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/faxmachine{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"wmk" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/fitness) -"wmm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/egg_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wms" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"wmy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"wmJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_2/ceiling) -"wmV" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wnd" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"wni" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) -"wnn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) -"wnp" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wnu" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"wnx" = ( -/obj/item/trash/barcardine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue, -/area/lv522/indoors/a_block/hallway) -"wnG" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"wnM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"wob" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"woq" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/oob) -"woy" = ( -/obj/structure/largecrate/random{ - pixel_x = 5 - }, -/obj/structure/largecrate/random{ - layer = 3.1; - pixel_x = 19; - pixel_y = 18 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"woA" = ( -/obj/structure/barricade/wooden{ - dir = 1; - layer = 3.1; - pixel_y = 17 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"woG" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"woM" = ( -/obj/item/seeds/riceseed, -/obj/structure/closet/crate, -/obj/item/seeds/riceseed, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"woR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"woU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"wpc" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "74" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wpl" = ( -/obj/structure/closet/secure_closet/miner{ - pixel_x = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"wpn" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/casino) -"wpt" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/reedbush{ - pixel_y = 10 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"wpH" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/casino) -"wpJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"wpS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"wqa" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/colony_streets/north_west_street) -"wqo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"wqp" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_east_street) -"wqy" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"wqA" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"wqU" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"wrc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"wrf" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/filt) -"wrj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"wrp" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"wrx" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"wrC" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/corpo) -"wrK" = ( -/obj/structure/cargo_container/wy/mid{ - health = 5000 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"wrN" = ( -/obj/structure/barricade/handrail{ - layer = 3.7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/static_comms/net_two, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/c_block/mining) -"wsa" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"wsg" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"wsl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"wsB" = ( -/obj/structure/barricade/wooden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"wsC" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"wsK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"wsL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"wsT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/largecrate/random/mini/chest/b{ - pixel_x = 7; - pixel_y = 8 - }, -/mob/living/simple_animal/mouse, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wsY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"wth" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"wum" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/north_command_centre) -"wuN" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"wuW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"wuX" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/casino) -"wuY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/corpo) -"wvd" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"wvg" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"wvi" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_east_street) -"wvs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/b_block/bar) -"wvt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wvK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"wvY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/kitchen) -"wwc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"wwe" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"wwu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"wwG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) -"wxo" = ( -/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 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"wxp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"wxZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"wyf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"wyj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wyq" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"wyz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2/ceiling) -"wyD" = ( -/obj/structure/surface/table/almayer, -/obj/item/book{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/book{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wyE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"wyN" = ( -/obj/structure/closet/secure_closet/marshal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"wyW" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"wzd" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"wze" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/lone_buildings/chunk) -"wzj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"wzk" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"wzt" = ( -/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/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"wzx" = ( -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wzG" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/east_central_street) -"wzH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_west_street) -"wzK" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"wAc" = ( -/obj/item/newspaper, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"wAs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"wAt" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wAY" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"wBk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wBx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"wBA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"wBG" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/west_reactor) -"wCf" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"wCp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkpurple2/northeast, -/area/lv522/indoors/a_block/dorms) -"wCM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/bed/bedroll{ - dir = 1 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"wCQ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"wDa" = ( -/turf/open/floor/prison, -/area/lv522/landing_zone_2) -"wDj" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"wDl" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"wDo" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Sec-Kitchen-Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/kitchen/glass) -"wDv" = ( -/obj/structure/closet/secure_closet/atmos_personal, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"wDC" = ( -/obj/item/prop/colony/canister, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"wDN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"wDP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"wDZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 13 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"wEa" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/prop{ - desc = "Holy shit"; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "l_leg"; - name = "left leg"; - pixel_x = -11; - pixel_y = -8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo) -"wEs" = ( -/obj/structure/surface/table/almayer{ - dir = 4; - flipped = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"wEP" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/obj/structure/cargo_container/kelland/left{ - layer = 2.9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"wEU" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"wEW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wFd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"wFr" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "97" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wFC" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"wFL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"wFO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/medical) -"wFR" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"wFZ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"wGh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"wGA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"wGF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "40" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wGH" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/obj/item/prop/colony/usedbandage{ - dir = 10 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"wGJ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wGT" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"wGY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"wHc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"wHn" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"wHF" = ( -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wHJ" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/colony_streets/central_streets) -"wHU" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wHV" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs, -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/op_centre) -"wHW" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/bridge) -"wHY" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"wIb" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"wIc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"wId" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"wIi" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"wIr" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/b_block/bridge) -"wIu" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"wIE" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/organic/grass, -/area/lv522/indoors/a_block/garden) -"wIO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"wJm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/obj/item/device/flashlight/lamp{ - pixel_x = -9; - pixel_y = 10 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wJn" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"wJq" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"wJu" = ( -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"wJG" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"wJH" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wJL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"wKg" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/corpo) -"wKj" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"wKn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"wLc" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"wLd" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wLh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"wLn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wLp" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/west) -"wLw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"wLB" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"wLM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"wLN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"wLQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"wLR" = ( -/obj/structure/window/framed/shiva, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wLU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"wMc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"wMf" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) -"wMh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"wMJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 2; - name = "\improper A-Block - Colony Medical Centre Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/medical) -"wMK" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"wMM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/telecomms/server{ - pixel_x = 16; - pixel_y = 16 - }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - pixel_x = -2; - pixel_y = -6; - stat = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"wMU" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wMZ" = ( -/obj/item/clothing/gloves/yellow, -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 26 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"wNl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"wNm" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"wNs" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness/glass) -"wNz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"wNA" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9; - layer = 2.9 - }, -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"wNC" = ( -/obj/item/clothing/shoes/blue{ - desc = "Comfortable-looking slippers."; - name = "blue slippers" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/b_block/bar) -"wNR" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/c_block/mining) -"wNW" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph." - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) -"wNX" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"wOc" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"wOe" = ( -/obj/structure/window_frame/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"wOl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"wOH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wOV" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/curtain/red, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"wPc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/central_streets) -"wPo" = ( -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/landing_zone_1) -"wPp" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "97" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wPw" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"wPL" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"wPN" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 11; - pixel_y = 25 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_2) -"wQa" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/landing_zone_2) -"wQf" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wQl" = ( -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Central Office"; - pixel_y = 26 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"wQw" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wQz" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"wRg" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"wRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"wRp" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) -"wRr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 8; - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"wRz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"wRI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Cargo Bay Quartermaster" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"wRO" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1/ceiling) -"wRS" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"wRX" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"wSg" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "26" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"wSm" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"wSp" = ( -/obj/structure/surface/table/almayer, -/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_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 14 - }, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"wSt" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"wSF" = ( -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"wSS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/hpr_box, -/obj/item/weapon/gun/rifle/lmg{ - current_mag = null - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"wSU" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"wTi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wTr" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/kitchen) -"wTv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"wTw" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"wTy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/kpack{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/ashtray/bronze{ - icon_state = "ashtray_small_bl_full"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/ammo_magazine/pistol/holdout, -/obj/item/ammo_magazine/pistol/holdout{ - pixel_x = 7 - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"wTM" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_x = -20 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"wTZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/c_block/cargo) -"wUt" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/ywflowers{ - layer = 3 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"wUA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/landing_zone_2/ceiling) -"wUL" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/lv522/oob) -"wVn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wVo" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -9; - pixel_y = 25 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"wVA" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"wVF" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "map_corpo2"; - pixel_x = -6; - pixel_y = 26 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "map_corpo"; - pixel_x = 6; - pixel_y = 26 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/crayons{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"wVT" = ( -/obj/structure/barricade/wooden, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"wVX" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"wWe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"wWk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"wWn" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"wWI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"wWJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"wWL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorm_north) -"wWX" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"wWY" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"wXn" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"wXM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"wYa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"wYe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"wYg" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/plating, -/area/lv522/landing_zone_1) -"wYm" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"wYs" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/landing_zone_2) -"wYC" = ( -/obj/structure/dispenser, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/hallway) -"wYE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"wYG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) -"wYJ" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"wZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/south/grey/right, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 11; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"wZt" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wZw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"wZy" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"wZG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"wZS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/light, -/obj/structure/machinery/recharger, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"wZT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"xam" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"xav" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/tofukabob, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xaF" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "102" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xaL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"xbg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"xbk" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xbq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "LZ1 Service Tunnel"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel) -"xbM" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_east_street) -"xbT" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"xbU" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/kitchen) -"xce" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/command_centre) -"xci" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"xcr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xcE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"xcF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xcJ" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"xcK" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"xcP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xcQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"xcS" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"xcX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/mining) -"xdb" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.5; - pixel_y = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xdf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/phone_base/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Entrance Office"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xds" = ( -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"xdt" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xdC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"xdD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) -"xdG" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"xdK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"xdN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xdQ" = ( -/obj/structure/surface/rack, -/obj/item/device/analyzer, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xdX" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xeb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) -"xec" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/west) -"xee" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"xeg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges) -"xei" = ( -/turf/closed/wall/strata_ice/dirty, -/area/space) -"xen" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"xez" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"xeA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xeC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"xeK" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/medical/glass) -"xfl" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkpurple2/north, -/area/lv522/indoors/a_block/dorms) -"xfn" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"xfp" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"xfu" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/north_east_street) -"xfz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security) -"xfD" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"xfI" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xfX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xgb" = ( -/obj/item/stack/sandbags_empty/small_stack, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"xgd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"xgA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/bridge) -"xgH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/bridge) -"xgJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xgM" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) -"xgP" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xgQ" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"xgX" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"xha" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Fitness Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) -"xhc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"xhg" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"xhD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/bridge) -"xhG" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/landing_zone_1/tunnel/far) -"xhP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xhT" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"xih" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "67" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xiq" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/obj/structure/prop/invuln/minecart_tracks/bumper{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"xiu" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"xiL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"xiX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"xjb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"xjg" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) -"xjk" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/cheesyfries, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xju" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"xjw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"xjF" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/executive) -"xkz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"xkG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) -"xkJ" = ( -/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/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"xkO" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/toilet) -"xlr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed{ - can_buckle = 0 - }, -/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{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xls" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"xly" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"xlA" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/central_streets) -"xlN" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"xlO" = ( -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 3 - }, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"xlQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/clothing/shoes/jackboots{ - pixel_x = -5; - pixel_y = -6 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/c_block/garage) -"xlU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"xmn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/overwatch/almayer/broken{ - dir = 8; - pixel_x = -12; - pixel_y = 1 - }, -/obj/item/storage/backpack/marine/satchel/rto/small{ - pixel_x = 7; - pixel_y = 19 - }, -/obj/structure/machinery/door_control{ - id = "UD6 East"; - name = "Cargo Shutter Control"; - pixel_y = -4 - }, -/obj/item/clothing/head/headset{ - pixel_x = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xmQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"xmS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"xmT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) -"xng" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) -"xno" = ( -/obj/item/weapon/gun/smartgun{ - current_mag = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"xnt" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/strata/white_cyan3/north, -/area/lv522/indoors/a_block/medical) -"xnC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"xnG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"xnL" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/south_west_street) -"xnU" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"xot" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xoU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"xoY" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xpf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"xpg" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/nw_rockies) -"xpl" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/south_street) -"xpn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xpH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"xpZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"xqj" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_east_street) -"xql" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"xqo" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xqp" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/landing_zone_1) -"xqJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/kitchen) -"xqP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"xrf" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"xrk" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"xry" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_street) -"xrH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"xrK" = ( -/obj/structure/surface/table/almayer, -/obj/item/seeds/bananaseed{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/seeds/berryseed, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"xrL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"xsa" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"xsd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"xsq" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"xss" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"xsu" = ( -/obj/item/clothing/suit/storage/marine/medium/leader, -/obj/item/clothing/head/helmet/marine/leader{ - pixel_x = 9; - pixel_y = 14 - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"xsM" = ( -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 12 - }, -/obj/structure/barricade/wooden{ - dir = 8; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"xtb" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/fitness) -"xto" = ( -/obj/item/storage/pouch/autoinjector/full, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"xtO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security) -"xtZ" = ( -/obj/item/tool/surgery/WYautopsy, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"xui" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "22" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xuk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 6 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"xuo" = ( -/obj/item/stack/sandbags/small_stack, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"xuF" = ( -/obj/structure/prop/server_equipment{ - icon_state = "rackframe_broken" - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/outdoor_bot) -"xuW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"xuX" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"xvk" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"xvl" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/c_block/bridge) -"xvo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"xvu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"xvy" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xvz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"xvK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) -"xvN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) -"xvV" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"xwb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 14; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"xwf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) -"xwg" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_west_street) -"xwO" = ( -/obj/structure/cargo_container/seegson/left, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"xwQ" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_east_street) -"xwX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_west_street) -"xxk" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_x = -7; - pixel_y = 27 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xxs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/security) -"xxv" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xxw" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/hallway) -"xxz" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 6; - pixel_x = 6; - pixel_y = 6 - }, -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/mining) -"xxB" = ( -/obj/structure/machinery/light, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"xxD" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/invuln/ice_prefab/standalone/trim{ - icon_state = "white_trim" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_east_street) -"xxK" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/outdoors/colony_streets/north_east_street) -"xxQ" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms/glass) -"xxU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"xxX" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"xyh" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"xyC" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"xyD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"xyK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xyU" = ( -/obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"xzc" = ( -/obj/structure/machinery/door/airlock/dropship_hatch/two{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "UD6 East"; - indestructible = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xzd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"xzi" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"xzn" = ( -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) -"xzv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_y = 3 - }, -/obj/item/paper/janitor, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"xzw" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) -"xzD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xzE" = ( -/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/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"xzG" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xzK" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/south_east_street) -"xzL" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"xzM" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_west_street) -"xzO" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/landing_zone_1) -"xzP" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/plating/platebot, -/area/lv522/indoors/c_block/cargo) -"xzW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo) -"xAc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/hydro) -"xAg" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"xAl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) -"xAx" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "23" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/computers/sensor_computer3{ - density = 0; - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xAF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/b_block/hydro) -"xAJ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"xAO" = ( -/turf/open/gm/river, -/area/lv522/indoors/a_block/fitness/glass) -"xAP" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xAV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xAZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"xBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"xBp" = ( -/obj/structure/surface/table/almayer{ - dir = 1; - flipped = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xBs" = ( -/obj/item/ammo_magazine/rifle/boltaction, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"xBy" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"xBP" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xCa" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen) -"xCc" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xCt" = ( -/obj/structure/window_frame/strata, -/obj/item/stack/rods, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xCz" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"xCN" = ( -/obj/item/clothing/under/shorts/blue{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"xCT" = ( -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorm_north) -"xDl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"xDp" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"xDt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"xDu" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) -"xDz" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) -"xDC" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"xDD" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"xDM" = ( -/obj/structure/surface/table/almayer{ - dir = 8; - flipped = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"xDP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/security/glass) -"xDR" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xDV" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/central_streets) -"xEb" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"xEd" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_east_street) -"xEr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"xEz" = ( -/obj/structure/largecrate/random, -/obj/item/storage/box/packet/high_explosive{ - pixel_x = -5; - pixel_y = -14 - }, -/obj/item/storage/pill_bottle/packet/oxycodone{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"xEB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xEK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/south_east_street) -"xEO" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"xES" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block - Colony Operations Centre Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"xET" = ( -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/lone_buildings/storage_blocks) -"xEW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"xFk" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"xFp" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"xFv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xFG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"xGa" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"xGc" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"xGf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"xGg" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 28 - }, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/garage) -"xGi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"xGk" = ( -/obj/item/lightstick/red/spoke/planted{ - pixel_x = 13; - pixel_y = 29 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"xGo" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/landing_zone_1/ceiling) -"xGp" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "26" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xGy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_east_street) -"xGP" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/plating, -/area/lv522/landing_zone_1/tunnel/far) -"xGV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xHj" = ( -/obj/structure/prop/invuln/minecart_tracks, -/obj/structure/closet/crate/miningcar{ - layer = 3.1; - name = "\improper materials storage bin"; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal/small_stack, -/obj/item/ore/slag, -/obj/item/ore/slag, -/obj/item/ore/slag, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xHp" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"xHr" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/c_block/casino) -"xHB" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) -"xHK" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 8 - }, -/obj/structure/flora/bush/ausbushes/pointybush{ - pixel_y = 12 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/bridge) -"xHL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"xHX" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) -"xIt" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "101" - }, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xIv" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_east_street) -"xIW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"xJa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/dorms) -"xJd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xJe" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "2" - }, -/obj/item/storage/belt/gun/m44/custom, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) -"xJf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/tool/surgery/scalpel/manager, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical) -"xJB" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/prison, -/area/lv522/landing_zone_2/ceiling) -"xJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"xKi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"xKj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/indoors/a_block/executive) -"xKk" = ( -/turf/closed/wall/strata_outpost_ribbed, -/area/lv522/outdoors/colony_streets/south_west_street) -"xKl" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xKy" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"xKA" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"xKG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) -"xKH" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xLg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xLq" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"xLu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"xLL" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/engineering) -"xLU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"xLY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"xMm" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/admin) -"xMA" = ( -/obj/structure/prop/almayer/computers/sensor_computer2{ - density = 0; - pixel_y = 16 - }, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xMO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"xMX" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard/full_stack, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/c_block/cargo) -"xNd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"xNe" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms/glass) -"xNi" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xNk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 8; - name = "\improper Wildcatters Office"; - panel_open = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/dorms) -"xNp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"xNX" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"xOa" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/casino) -"xOc" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/prison/kitchen, -/area/lv522/indoors/a_block/fitness) -"xOi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"xOw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"xOx" = ( -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"xOA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/landing_zone_1/ceiling) -"xOD" = ( -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/north_west_street) -"xON" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"xOR" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/greenfull/northwest, -/area/lv522/indoors/b_block/bridge) -"xPa" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"xPg" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/mining) -"xPk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/blue_plate/north, -/area/lv522/indoors/a_block/admin) -"xPo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"xPx" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"xPA" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/fitness/glass) -"xPF" = ( -/turf/closed/shuttle/elevator, -/area/lv522/indoors/c_block/mining) -"xPH" = ( -/turf/open/floor/prison, -/area/lv522/landing_zone_2/ceiling) -"xPK" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"xPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/item/prop/alien/hugger{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/item/ashtray/glass{ - icon_state = "ashtray_bork_gl"; - pixel_x = -4; - pixel_y = 10 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/a_block/executive) -"xPX" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"xQc" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/east_reactor/south) -"xQe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper B-Block - Hydroponics Airlock" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "LV_522_Hydro-Lockdown"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/b_block/hydro) -"xQg" = ( -/obj/structure/window_frame/strata, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "LV522CIC_1"; - name = "\improper Storm Shutters" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/admin) -"xQj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"xQq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"xQw" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"xQx" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) -"xQD" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/janitorialcart, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/mining) -"xQE" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Tornado) -"xQF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"xQR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"xQZ" = ( -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) -"xRb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xRe" = ( -/obj/structure/prop/ice_colony/dense/planter_box{ - dir = 9 - }, -/obj/structure/flora/bush/ausbushes/var3/sunnybush{ - icon_state = "fernybush_2"; - pixel_y = 10 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xRn" = ( -/obj/item/clothing/head/hardhat, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"xRw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/garage) -"xRH" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/outdoors/colony_streets/north_street) -"xRQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/recharger{ - pixel_y = 1 - }, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"xRU" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/south_east_street) -"xSj" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - name = "Suit Storage Unit"; - pixel_x = 3 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xSm" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/b_block/hydro) -"xSv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"xSD" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"xSJ" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/c_block/t_comm) -"xSP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/trash/wy_chips_pepper, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) -"xSQ" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_street) -"xTp" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"xTE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"xTF" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"xTJ" = ( -/obj/item/tool/kitchen/utensil/pknife{ - pixel_x = -9 - }, -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/dorms) -"xTV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/central_streets) -"xUe" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_fuel" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/garage) -"xUq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) -"xUt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"xUu" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) -"xUJ" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/a_block/security) -"xVa" = ( -/turf/open/floor/plating/platingdmg3/west, -/area/lv522/indoors/a_block/bridges/op_centre) -"xVd" = ( -/turf/closed/wall/strata_outpost_ribbed, -/area/lv522/indoors/lone_buildings/engineering) -"xVh" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics{ - icon_state = "hydrotray4" - }, -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platebotc, -/area/lv522/indoors/b_block/hydro/glass) -"xVn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xVy" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xVz" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"xVG" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"xVJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xVQ" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe, -/obj/item/tool/crowbar, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/south_west_street) -"xVR" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"xWb" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) -"xWl" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"xWS" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"xWY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/hallway) -"xWZ" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"xXg" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/east_central_street) -"xXl" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor) -"xXo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bed/chair{ - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"xXq" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"xXI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 2 - }, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"xXN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/dorms) -"xXR" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"xXS" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/b_block/bar) -"xXT" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"xYe" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/landing_zone_1) -"xYi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"xYn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/trash/plate{ - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"xYp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"xYx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen) -"xYA" = ( -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"xYB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/garden_bridge) -"xYD" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) -"xYE" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/east_central_street) -"xYL" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/east_reactor/south) -"xYQ" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/landing_zone_1) -"xZg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper C-Block - Radio Tower Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/t_comm) -"xZj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) -"xZk" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) -"xZl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"xZo" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges) -"xZv" = ( -/obj/structure/barricade/sandbags{ - dir = 8 - }, -/obj/item/prop/alien/hugger{ - pixel_x = 13; - pixel_y = -5 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_street) -"xZz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"xZC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"xZE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"xZI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"xZK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/colony_streets/north_west_street) -"xZM" = ( -/obj/structure/prop/server_equipment/yutani_server, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"xZP" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_east_street) -"xZT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/kitchen/glass) -"xZU" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/b_block/bridge) -"yad" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4; - pixel_y = 7 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/cargo) -"yaf" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe/plasmacutter, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"yah" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) -"yaj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"yaF" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"yaH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"ybj" = ( -/obj/item/prop/alien/hugger, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ybz" = ( -/turf/open/asphalt/cement, -/area/lv522/landing_zone_2) -"ybZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"yca" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/kitchen/glass) -"ycg" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/south_east_street) -"ycj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine{ - pixel_y = 5 - }, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2/ceiling) -"ycm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"yco" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ycw" = ( -/obj/structure/girder/reinforced, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"ycE" = ( -/turf/open/floor/carpet, -/area/lv522/indoors/b_block/bar) -"ycH" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"ycL" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/reactor_garage) -"ycM" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"ydb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/lv522/indoors/a_block/executive) -"ydd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"ydv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/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/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"yei" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) -"yet" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/kitchen) -"yeH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"yeT" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_west_street) -"yfa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"yfk" = ( -/obj/item/tool/lighter/random{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/paper/crumpled/bloody{ - pixel_x = -9 - }, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) -"yfu" = ( -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"yfy" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/mining) -"yfC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"yfH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/indoors/b_block/hydro) -"yfK" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/landing_zone_2) -"yfU" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) -"yfX" = ( -/obj/item/weapon/gun/boltaction{ - pixel_y = -8 - }, -/obj/item/prop{ - desc = "Holy shit"; - dir = 8; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "head_m"; - name = "human head"; - pixel_x = -7; - pixel_y = -5 - }, -/obj/item/clothing/head/collectable/tophat{ - layer = 3.1; - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/casino) -"ygf" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ygE" = ( -/obj/structure/closet/crate, -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/item/tool/pickaxe/silver, -/obj/item/tool/pickaxe/silver, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ygK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/turf/open/floor/prison/darkredfull2, -/area/lv522/indoors/a_block/security/glass) -"ygQ" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"yhf" = ( -/turf/open/floor/strata/multi_tiles, -/area/lv522/indoors/c_block/mining) -"yhi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/cargo) -"yhj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_street) -"yhp" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"yhz" = ( -/obj/structure/window_frame/corsat, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"yhK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) -"yim" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"yix" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/botanic_leather, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"yiE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"yiI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/lv522/indoors/a_block/medical/glass) -"yiM" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) -"yiU" = ( -/obj/structure/closet/crate, -/obj/item/weapon/classic_baton, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/landing_zone_2) -"yiZ" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate"; - layer = 3.1; - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/east_central_street) -"yjh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"yjm" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"yjp" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) -"yjr" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/under/marine{ - pixel_x = 18; - pixel_y = 20 - }, -/obj/item/prop{ - desc = "Holy shit"; - dir = 8; - icon = 'icons/mob/humans/species/r_human.dmi'; - icon_state = "head_m"; - name = "human head" - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant David 'Danny' Walts" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo) -"yjz" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/b_block/hydro) -"yjK" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/tool/weldingtool, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/south_east_street) -"yjN" = ( -/obj/structure/bedsheetbin{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"yjT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/south_west_street) -"ykj" = ( -/obj/effect/decal/cleanable/vomit{ - icon_state = "vomit_2" - }, -/turf/open/floor/strata/white_cyan3/east, -/area/lv522/indoors/a_block/medical/glass) -"ykk" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkbrownfull2, -/area/lv522/indoors/c_block/bridge) -"ykC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan3, -/area/lv522/indoors/a_block/medical) -"ykO" = ( -/obj/structure/machinery/light/double/blue{ - dir = 8; - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/minecart_tracks{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/indoors/c_block/mining) -"ykT" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/op_centre) -"ylo" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) -"ylp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison, -/area/lv522/indoors/c_block/t_comm) -"ylq" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) -"ylC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"ylG" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ylK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper C-Block - Cargo Airlock" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/c_block/cargo) -"ylN" = ( -/obj/structure/platform_decoration, -/turf/open/asphalt/cement/cement2, -/area/lv522/landing_zone_1) -"ylP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"ylX" = ( -/turf/closed/shuttle/dropship3/tornado/typhoon{ - icon_state = "30" - }, -/area/lv522/landing_zone_forecon/UD6_Typhoon) -"ylY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/a_block/admin) -"ylZ" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"ymh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) - -(1,1,1) = {" -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -"} -(2,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(3,1,1) = {" -bMX -cpy -abo -abS -ajM -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -auG -auG -vtc -vtc -vtc -vtc -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(4,1,1) = {" -bMX -cpy -abo -acJ -akl -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vtc -vtc -vtc -vtc -vtc -vtc -vtc -nTa -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -dLB -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(5,1,1) = {" -bMX -cpy -cpy -adI -akM -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -dvO -orm -orm -wPL -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -kHc -kHc -kHc -kHc -cpy -cpy -cpy -vtc -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rWS -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -dLB -uFf -qdD -apZ -pxb -fZT -pxb -pxb -pxb -bTo -iwE -iwE -iwE -wSF -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(6,1,1) = {" -bMX -cpy -abo -adN -akM -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -dvO -hJq -kiT -tfO -viE -cpy -cpy -cpy -auG -auG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -auG -vtc -vtc -vtc -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -sRA -cpy -cpy -sRA -rWS -rWS -rWS -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eGu -fZT -pxb -pxb -pxb -pxb -pxb -pxb -nQz -tPf -unM -pXS -pXS -pXS -jqO -tPf -vYK -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(7,1,1) = {" -bMX -cpy -abo -afp -eEE -abo -abo -abo -abo -abo -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -hJq -qZf -wGH -cpy -viE -cpy -cpy -vtc -vtc -vtc -vtc -cpy -cpy -cpy -cpy -auG -auG -vtc -vtc -vtc -vtc -vtc -vtc -uWO -uWO -uWO -lQS -gsZ -gOj -han -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rWS -rWS -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ghl -pxb -xqp -pxb -pxb -pxb -nQz -tPf -oKc -jxn -pXS -pXS -sYw -pXS -pXS -jxn -sOM -tPf -vYK -pxb -xqp -pxb -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(8,1,1) = {" -bMX -cpy -abo -afp -akM -vyb -abo -gAt -plX -dvh -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -aVg -adl -cpy -cpy -pOK -rQL -cpy -auG -vtc -vtc -vtc -vtc -vtc -cpy -cpy -vtc -vtc -vtc -vtc -vtc -vtc -vtc -vtc -uWO -pit -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rWS -rWS -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -ePl -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -dLB -pwa -pwa -xqp -xqp -xqp -nQz -oKc -pXS -pXS -pXS -gjR -dIN -sYw -srl -srl -pXS -pXS -pXS -sOM -vYK -pxb -xqp -pwa -pxb -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(9,1,1) = {" -bMX -cpy -cpy -afp -ann -asI -kXx -akM -uuf -bVG -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -aVg -tCa -cpy -qIu -viE -cpy -cpy -auG -vtc -vtc -vtc -vtc -vtc -mPC -vtc -vtc -vtc -vtc -vtc -uWO -uWO -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -pit -uWO -uWO -vtc -vtc -auG -vtc -cpy -cpy -cpy -cpy -cpy -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -mdI -pwa -pwa -pxb -nQz -tPf -oKc -pXS -pXS -uiM -uiM -uiM -uiM -sYw -uiM -nUd -tAr -uiM -pXS -pXS -sOM -tPf -vYK -pxb -pwa -pxb -pxb -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(10,1,1) = {" -bMX -cpy -abo -abS -ajM -cpy -abo -nEv -trK -pDw -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -aVg -cpy -cJA -cpy -viE -cpy -jXp -vtc -vtc -vtc -vtc -vtc -vtc -mPC -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -auG -cpy -cpy -cpy -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -wGF -faW -rEx -uSG -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -rWS -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -mFx -pxb -nQz -tPf -oKc -pXS -pXS -pXS -kIm -uiM -dIN -dIN -cLS -sYw -uBe -ngE -dmY -uiM -kTc -pXS -pXS -pXS -sOM -tPf -vYK -pxb -pwa -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(11,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -abo -abo -abo -abo -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -hGJ -kFP -cpy -pOK -rQL -cpy -sNk -vtc -vtc -uWO -gxN -hIZ -hIZ -ccL -hSi -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -jrT -cpy -cpy -sRA -sRA -sRA -sRA -sRA -rWS -bdJ -iBv -aSF -sRA -sRA -bnV -cra -xAx -bBN -wGF -faW -xui -dZU -jfC -kor -rWS -uiK -uiK -rWS -ePl -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vkg -pxb -nQz -oKc -pXS -pXS -pXS -kIm -gjR -gjR -uiM -cLS -cLS -gjR -sYw -uBe -hbE -aEA -uiM -kTc -mke -mke -pXS -pXS -pXS -sOM -vYK -pxb -pwa -pxb -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(12,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -hGJ -mTE -rQL -cpy -cpy -vtc -uWO -uWO -uWO -gEB -uWO -ooe -ooe -lPY -hIZ -hIZ -mAW -hIZ -hIZ -hIZ -hIZ -hIZ -hIZ -hIZ -jXT -jXT -jXT -jXT -jXT -dQr -jXT -jXT -hIZ -ivz -hIZ -hIZ -hSi -vtc -cpy -cpy -rWS -sRA -sRA -sRA -rWS -ccY -fIo -xih -jsz -kJF -qie -ivq -ylX -auE -bCR -bnV -cra -xAx -bBN -fnp -uiK -rWS -rWS -sRA -uiK -rWS -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vkg -nQz -oKc -pXS -xYe -uTd -oyf -tns -fOc -uTd -oyf -tns -fOc -uTd -oyf -tns -fOc -uTd -oyf -uLz -fOc -uTd -oyf -tns -xYe -pXS -sOM -vYK -pxb -pwa -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(13,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -auG -vtc -uWO -uWO -uWO -gEB -uWO -gOJ -cpy -lQS -uWO -uWO -mwp -uWO -uWO -uWO -dHR -dJJ -eXV -uWO -gcY -uWO -uWO -vtc -vtc -auG -auG -vtc -vtc -vtc -vtc -vtc -lMH -vtc -cpy -cpy -rWS -rWS -sRA -sRA -vgq -ppv -xmn -bwf -pEt -kep -dkg -nxl -rmd -nxl -nAM -ivq -ylX -auE -ivq -mfN -sRA -sRA -rWS -sRA -kor -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -pwa -jyt -jxn -vbo -nFj -pRg -nFj -nFj -nFj -sYH -sYH -sYH -nFj -nFj -pRg -nFj -nFj -sYH -sYH -sYH -sYH -sYH -nFj -pRg -nFj -jTf -jxn -wdY -pxb -pwa -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(14,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -auG -vtc -uWO -uWO -uWO -gEB -uWO -uWO -cpy -uWO -mgJ -mwp -uWO -uWO -aRH -vPk -vPk -vPk -vPk -vPk -gfL -uWO -uWO -uWO -vtc -vtc -vtc -dXa -auG -vtc -vtc -vtc -lMH -jrT -vtc -cpy -cpy -cpy -pSS -fpj -vOe -cBF -qzo -gVq -gVq -qGL -gVq -gjW -gVq -bVc -rGk -wSS -gWW -cgk -uEr -vgM -uiK -uiK -sRA -sRA -sRA -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tFx -tFx -tFx -tFx -bbs -pwa -vny -pXS -cnq -nFj -nFj -nFj -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -sYH -gnf -pXS -wes -pxb -pwa -pxb -pxb -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(15,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vtc -uWO -uWO -uWO -gEB -uWO -uWO -mPC -uWO -uWO -uWO -uWO -aRH -cKF -bIJ -bIJ -bIJ -bIJ -bIJ -dek -bsz -uWO -cJy -uWO -uWO -vtc -jus -eXO -emm -vtc -vtc -lMH -vtc -uWO -cpy -cpy -cpy -wiF -wFr -lOL -meV -wQw -xXq -cML -kku -kus -qtQ -qYK -ofH -qyv -kJF -acY -kJF -uEt -kor -sRA -sRA -sRA -sRA -rWS -ePl -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tFx -tFx -lKN -kfJ -xjb -cTJ -pxb -xzO -pXS -wYg -nFj -nFj -nFj -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -sYH -vTO -pXS -wiY -pxb -pwa -pwa -pxb -cpy -cpy -cpy -cpy -cpy -eYM -eYM -eYM -eYM -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(16,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -wnG -wnG -wnG -mvG -wnG -vkJ -vkJ -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vtc -vtc -vtc -uWO -uWO -gEB -idH -uWO -mPC -uWO -uWO -uWO -uWO -aTA -bIJ -bIJ -sNA -mJc -bTE -bIJ -bIJ -irQ -irQ -irQ -irQ -hQU -iOi -jCb -fTi -ksf -kPO -jYu -tDb -irQ -irQ -irQ -cpy -cpy -xaF -rDt -qst -gTM -nWU -nVH -gVq -gVq -eFf -gVq -qGL -qMK -wnp -cyb -oLy -fCC -uEz -vhd -sRA -sRA -sRA -rYp -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -ien -ien -kjp -kjp -kjp -kjp -ien -ien -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tFx -fUb -xOA -wRO -tFx -cTJ -pxb -xzO -pXS -bga -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -orU -pXS -wiY -pxb -pwa -pwa -pxb -cpy -cpy -cpy -cpy -eYM -eYM -amL -amL -eYM -eYM -eYM -eYM -cpy -cpy -cpy -cpy -cpy -bMX -"} -(17,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -bXa -rje -rje -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -auG -vtc -vtc -uWO -uWO -gEB -uWO -ttf -cpy -cpy -uWO -uWO -uWO -aTA -bIJ -eBp -aeR -aeR -aeR -sTq -gVd -hoq -hKG -uWO -uWO -ieW -iOY -jCc -gjV -iJJ -kzl -llX -lMH -vtc -vtc -vtc -vtc -cpy -cpy -rWS -rWS -pUc -cZf -aSk -beq -aha -aha -tSe -vzl -tSe -dFr -qBS -hpk -tYa -qBS -pDB -uiK -uiK -gxe -xto -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -eBN -umf -vXc -vXc -yiM -yiM -yiM -ien -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tFx -wFd -vrJ -oNr -xGo -cTJ -pxb -xzO -pXS -wlx -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -dMY -pXS -wiY -pxb -pwa -pwa -pxb -cpy -cpy -cpy -eYM -eYM -eYM -wfP -wfP -wfP -eYM -sRM -eYM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(18,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -bXa -rje -rje -glY -glY -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cKG -auG -vtc -vtc -gEB -uWO -lEQ -cpy -cpy -cpy -uWO -uWO -cpy -bIJ -rrz -eaE -eaE -eaE -nKn -gXE -htu -uWO -uWO -uWO -iff -iTS -iTS -iTS -kBv -jbI -lnL -lMH -ibu -vtc -vtc -vtc -cpy -cpy -rWS -sRA -pUc -qst -nfF -bTg -kJF -iCd -qBS -hpk -tYa -ftZ -wGF -gWF -ryh -uSG -dVu -uiK -sRA -odi -ien -ien -dPQ -rZs -ien -dfa -syr -ien -wIb -swJ -ien -ldu -yhK -aUf -iSf -iSf -yhK -yhK -vKR -ien -wEP -hJZ -lZc -czW -sjY -ien -lSg -qWD -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -eEe -ylo -ylo -ylo -ylo -ylo -ylo -rMF -eBN -vXc -vXc -vXc -vXc -vXc -vXc -ien -ien -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -cpy -cpy -ien -tFx -pEh -gHm -dfU -xGo -cTJ -pxb -xzO -pXS -cnq -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -hJW -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -gnf -pXS -wiY -pxb -pwa -pwa -pxb -cpy -cpy -eYM -eYM -vrF -gvX -wfP -wfP -wfP -gvX -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(19,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -saC -saC -rje -vch -rje -rje -glY -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -cpy -cpy -cpy -cpy -lqb -jZm -jZm -jZm -qUY -jZm -nNL -xpg -cpy -cpy -cpy -cpy -cpy -bIJ -nKn -eaE -eaE -eaE -pVT -gVd -hoq -hKG -uWO -uWO -uWO -cPi -uWO -uWO -vtc -vtc -vtc -mnr -jXT -jXT -jXT -noL -cpy -cpy -cpy -sRA -sRA -vRi -szP -pOz -sRA -sRA -wGF -gWF -xGp -uSG -bnV -nCF -aRK -aNL -gaz -hPM -uiK -oow -ien -wIb -bAm -xhg -dkB -dkB -dYA -qUb -xZK -cRo -xwX -ldM -clY -qPX -lIR -dTJ -dTJ -akV -eUt -clY -vJO -hJZ -hJZ -woA -hJZ -hJZ -hJZ -svz -ylo -owG -cYp -ksE -odN -rBj -ksE -iCB -xCc -ylo -ylo -eEe -rBa -qwY -sqj -pIm -uUX -ylo -rMF -eBN -vXc -vXc -vXc -vXc -vXc -vXc -vXc -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -tFx -jAm -jAm -jAm -tFx -cTJ -pxb -xzO -pXS -wYg -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -vTO -pXS -wiY -pxb -pwa -pwa -pxb -cpy -eYM -eYM -jJF -wfP -eYM -wfP -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(20,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -saC -saC -rje -rje -rje -rje -rje -glY -glY -saC -glY -glY -saC -saC -jIn -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -lqb -lqb -lqb -lqb -gYM -lqb -lqb -xpg -cpy -cpy -cpy -cpy -cpy -bIJ -bIJ -aeR -aeR -aeR -bIJ -gXE -htu -uWO -uWO -cPi -uWO -uWO -uWO -ibu -vtc -vtc -uWO -uWO -uWO -vtc -vtc -lMH -vtc -wms -cpy -sRA -sRA -sRA -sRA -sRA -sRA -sRA -bnV -viQ -aRK -bBN -cpy -cpy -cpy -rWS -epm -ibt -qWO -ien -ien -ien -oWA -sJr -prM -kvc -kBz -jDp -aKX -swJ -dpa -clY -sjY -qPX -rOi -swt -rdM -xDC -eUt -hJZ -clY -fPH -gRs -hJZ -hJZ -hJZ -yeT -gKO -ylo -vaz -nHB -ksE -rkt -nHB -ksE -rKu -nmY -sFV -ylo -koo -ylo -xgP -rqg -jsd -xqo -ylo -rMF -eBN -vXc -vXc -vXc -vXc -vXc -vXc -vXc -umf -umf -ien -vGk -vSM -ien -tzz -jGK -ien -pxk -xSD -ien -qJy -aRN -ien -jsr -aey -aey -fnA -krc -cTJ -pxb -xzO -pXS -bga -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -orU -pXS -wiY -pxb -pwa -xqp -pxb -cpy -eYM -jsg -jJF -wfP -eYM -wfP -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(21,1,1) = {" -bMX -cpy -cpy -cpy -tiQ -tiQ -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -bXa -rje -rje -rje -rje -rje -rje -rje -rje -rje -bXa -rje -rje -njj -jIn -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -bzC -kBq -oiW -niU -ljq -bzC -xpg -cpy -cpy -cpy -cpy -cpy -cpy -bIJ -bIJ -ogg -bIJ -bIJ -nru -cjE -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -uWO -uWO -vtc -uWO -uWO -vtc -mnr -jXT -nYM -kVG -bWt -wbt -wbt -wbt -kXe -sRA -sRA -sRA -sRA -sRA -cpy -cpy -cpy -rWS -sRA -sRA -sRA -sRA -sRA -ien -wIb -aKX -nJR -eiZ -eiZ -eiZ -kIj -eiZ -swJ -dpa -clY -sjY -vQx -mZs -mOO -iuv -xEb -tCq -hJZ -hJZ -clY -aTP -hJZ -hJZ -hJZ -bCi -ylo -ylo -enE -ksE -nHB -rkt -rkL -nHB -vaz -nHB -nHB -ylo -koo -ylo -jLn -uaf -ksE -rAz -ylo -ylo -eBN -vXc -vXc -vXc -umf -vXc -vXc -vXc -omZ -vfQ -xlA -vfQ -vfQ -xlA -vfQ -pBj -xlA -nmw -vfQ -mPm -kfK -mBX -tZh -ofi -ofi -max -peZ -krc -cTJ -pxb -xzO -pXS -wlx -nFj -nFj -nFj -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -sYH -dMY -pXS -wiY -pxb -xqp -xqp -cpy -cpy -eYM -bDE -wfP -wfP -eYM -jJF -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(22,1,1) = {" -bMX -cpy -cpy -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -bXa -rje -rje -rje -rje -rje -rje -rje -rje -rje -bXa -rje -rje -rje -njj -jIn -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -bzC -oiW -oiW -niU -oiW -bzC -xpg -cKG -rtI -llZ -mcN -cpy -csU -cpy -bQG -bQG -bQG -bQG -cjE -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -uWO -cPi -auG -vtc -vtc -uWO -vtc -vtc -vtc -wnu -nvB -sRA -sRA -sRA -sRA -kXo -sRA -cpy -cpy -sRA -sRA -lFz -cpy -rWS -rWS -sRA -sRA -sRA -sRA -sRA -ien -wIb -eiZ -xGa -xLq -uyN -bQX -rCS -aKX -swJ -dpa -clY -clY -vQx -slD -xPx -kCF -rbV -wRz -wBA -wBA -wBA -yhK -yhK -vKR -sjY -pWQ -xvy -yfu -pBC -ksE -nHB -ljv -cbg -nHB -ljv -ksE -nHB -ylo -eEe -ylo -bEJ -nHB -ksE -rTG -yfu -ylo -eBN -vXc -vXc -vXc -umf -umf -vXc -omZ -rMF -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -nJv -fnA -dwq -tZh -ofi -max -peZ -krc -cTJ -pxb -vAt -pXS -cnq -nFj -nFj -nFj -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -sYH -nFj -nFj -sYH -gnf -pXS -wjE -pxb -xqp -pwa -cpy -cpy -eYM -mPJ -mBb -wfP -eYM -jJF -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(23,1,1) = {" -bMX -cpy -cpy -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -vch -rje -pUt -ewD -ewD -ewD -aMK -ewD -ewD -ewD -ewD -ewD -ewD -gMY -rje -rje -iuj -rje -rje -rje -rje -pmV -saC -saC -saC -tiQ -tiQ -tiQ -bzC -bzC -oiW -oiW -niU -kBq -bzC -xpg -pMT -ujZ -ise -mcN -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -uWO -uWO -uWO -uWO -vtc -vtc -uWO -uWO -auG -vtc -vtc -uWO -uWO -vtc -vtc -cpy -cpy -sRA -rWS -sRA -sRA -gTU -cpy -cpy -cpy -cpy -sRA -nvB -abt -rWS -sRA -sRA -sRA -sRA -sRA -ien -ien -ien -xwO -eiZ -xOD -kvh -iUP -aKX -aKX -swJ -dpa -clY -clY -vQx -vmQ -swt -dpk -hJZ -hJZ -hJZ -nlz -oRU -hJZ -clY -eUt -sjY -pWQ -xvy -ksE -qvY -yfu -yfu -yfu -yfu -yfu -yfu -bZd -yfu -rBa -koo -ylo -yfu -bZd -yfu -bZd -bZd -xvy -eBN -vXc -vXc -vXc -cpy -umf -yiM -hBQ -nJv -xVd -vPg -ogy -nJv -nJv -wDv -wDv -nJv -aJG -aJG -aJG -xVd -nJv -dwq -tZh -ofi -max -ien -ien -ien -pxb -jyt -jxn -iDs -nFj -pRg -nFj -nFj -nFj -sYH -sYH -sYH -nFj -nFj -pRg -nFj -nFj -sYH -sYH -sYH -sYH -sYH -nFj -pRg -nFj -hLS -jxn -wdY -pxb -pwa -pxb -pxb -cpy -eYM -pkp -mBb -wfP -eYM -jJF -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(24,1,1) = {" -bMX -cpy -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -pmV -uPc -uPc -kcb -kcb -cDv -cDv -uPc -uPc -kmd -saC -bpX -rje -rje -bXa -rje -rje -rje -rje -njj -jIn -fop -saC -tiQ -tiQ -bzC -bzC -bzC -oiW -ljq -niU -oiW -bzC -xpg -pPt -qbK -ise -mcN -uWO -vtc -vtc -vtc -uWO -uWO -uWO -uWO -vtc -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -uWO -uWO -vtc -vtc -auG -uWO -vtc -vtc -sRA -cpy -cpy -sRA -kBT -rWS -aOd -sRA -cpy -cpy -cpy -cpy -sRA -sRA -sRA -sRA -uiK -sRA -sRA -sRA -rWS -ien -lwV -kNi -lwV -gcJ -lwV -lkK -lwV -vBT -hpY -fRJ -sjY -clY -vQx -vzy -hwF -ePp -llU -mLV -hJZ -nlV -nzZ -hJZ -hJZ -iPu -wBA -qkg -sbl -icE -djm -pCn -qJK -icE -qJK -qJK -qJK -cQB -bZd -ylo -koo -rBa -yfu -pQh -bZd -bZd -yfu -xvy -eBN -vXc -vXc -cpy -cpy -umf -yiM -hBQ -nJv -nJv -vPg -vPg -hvb -iCT -wdj -jnQ -nJv -bzL -qmA -qmA -aJG -nJv -dwq -ofi -ofi -max -peZ -krc -cTJ -pxb -fmr -nBD -pXS -mSK -vJj -jIk -aGS -dhP -vJj -jIk -aGS -dhP -vJj -jIk -aGS -dhP -vJj -jIk -aGS -dhP -vJj -jIk -aGS -mSK -pXS -gPv -gVn -pwa -pwa -pxb -pxb -cpy -eYM -eYM -lmI -wfP -eYM -wfP -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -cpy -bMX -"} -(25,1,1) = {" -bMX -cpy -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -pmV -uPc -tKo -wBG -tiQ -cDv -cDv -tKo -hTU -tiQ -saC -saC -rje -rje -glY -glY -rje -rje -rje -rje -njj -fop -fop -tiQ -tiQ -bzC -bzC -bzC -nvd -bgc -mjs -nvd -bzC -xpg -pPt -sDS -ise -mcN -uWO -uWO -vtc -vtc -uxd -uWO -aNw -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -uWO -uWO -uWO -vtc -auG -uWO -uWO -vtc -sRA -cpy -cpy -sRA -tYG -rWS -tah -sRA -sRA -cpy -cpy -rWS -sRA -uiK -uiK -uiK -uiK -nCt -sRA -sRA -rWS -ien -vha -skL -vha -vha -vha -mnV -vha -vha -vha -tlg -sjY -hJZ -wqa -orP -gAO -edQ -sFL -mLW -hJZ -hJZ -hJZ -hJZ -hJZ -slO -hJZ -pWQ -xvy -yfu -yfu -yfu -bZd -bZd -yfu -yfu -yfu -bDr -bZd -ylo -eEe -rBa -xdN -bZd -yfu -bZd -yfu -xvy -eBN -vXc -vXc -cpy -vXc -vXc -yiM -nDk -nJv -dWy -xTF -vLs -udM -nEY -sQD -jHT -nJv -cNO -qmA -mdp -aJG -nJv -hxp -ofi -ofi -max -peZ -krc -cTJ -pxb -pxb -fmr -nBD -pXS -pXS -pXS -atH -pJm -eiW -uiM -kIm -uBe -kIm -sYw -iPW -iPW -srl -uiM -fZB -atH -atH -pXS -pXS -pXS -gPv -gVn -pxb -pwa -pwa -pwa -pxb -cpy -eYM -fkF -wfP -wfP -eYM -wfP -wfP -wfP -eYM -sRM -hTe -eYM -eYM -cpy -cpy -cpy -bMX -"} -(26,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -bXa -bXa -kcM -tiQ -tiQ -tiQ -tiQ -jTa -jTa -tiQ -tiQ -tiQ -tiQ -saC -saC -glY -glY -glY -rje -rje -rje -rje -rje -rje -fop -fop -xmT -fbl -fbl -fbl -fbl -fbl -eai -fbl -bzC -xpg -xpg -qbK -ise -mcN -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -uWO -vtc -sRA -uiK -uiK -sRA -lgk -sRA -bKq -goY -rsF -rWS -rWS -sRA -uiK -uiK -uiK -uiK -uiK -cpy -sRA -sRA -ien -ien -ien -gjC -gjC -gjC -gjC -gmA -gjC -gjC -gjC -gjC -gjC -wqa -wqa -wqa -mIK -mIK -mIK -mIK -mIK -mIK -mIK -mIK -mIK -ymh -mIK -mIK -ylo -nHB -nvn -pIc -aEs -pIc -pIc -pIc -yfu -bDr -yfu -jwg -eEe -ylo -hjE -aEs -pIc -oZQ -bCS -ylo -eBN -vXc -vXc -vXc -vXc -yiM -yiM -ajk -nJv -oUm -vIy -vIy -oTp -knT -sEa -iPr -nJv -rZg -mwC -kIs -aJG -nJv -hxp -ofi -ofi -max -ien -ien -ien -pwa -pxb -pxb -fmr -udi -nBD -pXS -pXS -pXS -eiW -qkw -kIm -gjR -kIm -sYw -iPW -iPW -srl -uiM -atH -pXS -pXS -pXS -gPv -udi -gVn -pxb -pxb -pwa -pwa -pwa -cpy -cpy -eYM -eYM -wfP -wfP -eYM -wfP -wfP -wfP -eYM -sRM -hTe -hTe -eYM -cpy -cpy -cpy -bMX -"} -(27,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -pmV -uPc -dUS -ktX -tiQ -cDv -cDv -tJk -ktX -tiQ -saC -saC -saC -saC -glY -glY -glY -rje -rje -rje -rje -rje -fop -fop -xmT -jAE -jRZ -vSd -pzA -iWP -eai -bzC -bzC -bzC -xpg -qbK -ise -mcN -uWO -uWO -lEQ -jZm -jZm -jZm -jZm -jZm -jZm -jZm -jZm -jZm -uWO -iTW -cPi -uWO -jZm -jZm -jZm -uWO -uWO -vtc -vtc -vtc -uWO -eVU -sRA -tTr -pUR -uiK -uiK -uiK -uiK -ruH -goY -goY -goY -goY -goY -goY -goY -goY -rsF -sRA -sRA -sRA -clY -sjY -clY -clY -sjY -sjY -eUt -clY -clY -clY -hJZ -clY -clY -wqa -hJZ -hJZ -mAg -uSZ -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -slO -hJZ -bCi -ylo -ylo -dVY -ayR -rKu -dVY -rKu -rKu -nHB -sIS -yfu -rBa -koo -ylo -ylo -sMe -umV -lnp -ylo -ylo -eBN -vXc -vXc -vXc -yiM -yiM -yiM -hBQ -nJv -nJv -lHu -pwT -fSv -wbj -rIn -lZV -oEe -jnQ -vIy -pCT -jYy -xLL -dwq -ofi -tZh -max -peZ -krc -cTJ -pwa -pwa -pxb -pxb -pxb -fmr -udi -nBD -pXS -pXS -uiM -uiM -uiM -uiM -sYw -uiM -uiM -uiM -uiM -pXS -pXS -gPv -udi -gVn -pxb -pxb -pxb -pxb -pwa -pwa -pwa -cpy -cpy -eYM -qQc -wfP -lgR -eYM -wfP -wfP -uuL -eYM -sRM -hTe -hTe -eYM -cpy -cpy -cpy -bMX -"} -(28,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -trM -uPc -uPc -uPc -kmd -imw -cDv -uPc -uPc -kmd -uPc -saC -saC -saC -saC -saC -gli -ewD -ewD -ewD -ewD -fop -fop -fop -xmT -rSA -fbl -aze -vhp -nYf -eai -fbl -bzC -xpg -xpg -sXd -ise -mcN -aNw -uWO -kiN -bIJ -bIJ -wvg -wvg -wpS -wZG -wpS -wvg -wvg -uWO -uWO -uWO -uWO -ilK -bIJ -bIJ -uWO -uWO -vtc -vtc -vtc -uWO -sRA -sRA -uiK -uiK -hKE -hKE -jsM -uiK -hRu -uiK -uiK -nCt -uiK -uiK -tTr -hKE -hKE -viA -sRA -sRA -sRA -sjY -sjY -clY -clY -clY -clY -eUt -clY -clY -sjY -hJZ -hJZ -clY -oea -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -slO -hJZ -xzM -oOS -ylo -ylo -ylo -ylo -ylo -ylo -ylo -wlo -uOw -wlo -ylo -eEe -ylo -ylo -ylo -ylo -ylo -ylo -rMF -wHJ -vXc -vXc -yiM -yiM -yiM -yiM -ary -olB -pyX -qWf -icy -wdj -wdj -wdj -puF -aRt -jnQ -vIy -eXU -lKu -xLL -dwq -ofi -max -max -peZ -krc -cTJ -pwa -pwa -pwa -pxb -pxb -pxb -pxb -fmr -nBD -pXS -pXS -pXS -dJo -fZB -sYw -srl -srl -pXS -pXS -pXS -gPv -gVn -pxb -pxb -pxb -pxb -pxb -pwa -pwa -pwa -pxb -cpy -cpy -eYM -eYM -jhV -eYM -eYM -lmI -wfP -wfP -eYM -huz -qxk -hTe -eYM -cpy -cpy -cpy -bMX -"} -(29,1,1) = {" -bMX -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -pmV -maO -maO -maO -maO -maO -maO -maO -maO -maO -pdz -rje -saC -saC -saC -saC -saC -rje -rje -rje -rje -fop -fop -fop -xmT -fop -fbl -aze -vhp -xAg -kOE -qam -bzC -xpg -pPC -qbK -ise -mcN -uWO -uWO -kiN -bIJ -eaE -eaE -eaE -eaE -eaE -eaE -eaE -eaE -ilK -uWO -aNw -iTW -uWO -uWO -bIJ -uWO -uWO -uWO -vtc -vtc -uWO -uiK -sRA -uiK -uiK -uiK -uiK -uiK -uiK -hRu -uiK -uiK -uiK -uiK -orE -uiK -uiK -uiK -hRu -uiK -sRA -sRA -sjY -clY -clY -clY -clY -clY -eUt -hJZ -sjY -hJZ -hJZ -hJZ -clY -oea -hJZ -hJZ -hJZ -clY -clY -clY -mwX -mwX -mwX -hJZ -slO -hJZ -hJZ -xzM -vha -vQx -gTd -eKl -eKl -eKl -kmK -eKl -sev -eKl -eKl -fGK -kmK -eKl -eKl -eKl -eKl -eKl -wHJ -vXc -yiM -yiM -yiM -yiM -yiM -yiM -hBQ -xLL -fJr -ukp -xdD -oPc -nEY -sQD -qsY -nJv -wMZ -rbc -vIy -ylZ -xLL -dwq -max -max -max -peZ -krc -vem -bTu -bTu -bTu -bTu -xYQ -pxb -pxb -pxb -fmr -udi -nBD -jxn -pXS -pXS -sYw -pXS -pXS -jxn -gPv -udi -gVn -pxb -pxb -pxb -pxb -pxb -pxb -pwa -xqp -pwa -pxb -cpy -eYM -eYM -wfP -wfP -wfP -eYM -wfP -wfP -jJF -eYM -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(30,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -pmV -uPc -cDv -cDv -cDv -maO -maO -cDv -cDv -cDv -uPc -rje -cDv -sIF -saC -saC -saC -saC -saC -rje -fop -fop -fop -fop -chm -fop -fbl -aze -vhp -wbm -fbl -fbl -bzC -xpg -xpg -sDS -ise -mcN -uWO -uWO -kiN -fei -eaE -sNA -sNA -uWO -sNA -sNA -sNA -lvx -sNA -sNA -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -sRA -sRA -rWS -uiK -uiK -uiK -uiK -uiK -hRu -rGi -uiK -uiK -uiK -uiK -uiK -uiK -sRA -rtr -goY -wbt -wov -wov -wov -yhK -yhK -qKq -yhK -lyg -wBA -wBA -wBA -wBA -vEf -wBA -iYS -wBA -wBA -yhK -iSf -yhK -xDt -wBA -wBA -wBA -vFH -lyg -wBA -vEf -wBA -wBA -dxr -tBC -rwE -rwE -rwE -rwE -rwE -hWI -yiM -fGK -fGK -fGK -vXc -vXc -vXc -umf -umf -vXc -yiM -yiM -yiM -yiM -yiM -yiM -yiM -hBQ -nJv -xVd -xjw -oMZ -bri -gsj -hII -tjE -nJv -niY -iPL -frU -xVd -nJv -dwq -max -max -max -peZ -tFx -xGo -tFx -tFx -xGo -tFx -cTJ -pxb -pxb -pxb -pxb -pxb -fmr -udi -fjJ -pXS -pXS -pXS -chk -udi -gVn -pxb -pxb -pxb -pxb -pxb -pxb -pwa -pwa -pwa -xqp -xqp -cpy -cpy -eYM -lCk -wfP -wfP -wfP -eYM -wfP -wfP -jJF -vto -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(31,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -pmV -uPc -uPc -uPc -uPc -maO -maO -uPc -uPc -uPc -uPc -rje -cDv -ctC -ctC -maO -saC -saC -saC -saC -saC -fop -fop -fop -chm -chm -vcC -aze -vhp -xAg -fbl -bzC -bzC -bzC -xpg -qbK -ise -mcN -uWO -uWO -kiN -fei -enS -sNA -dmG -dQs -gFp -eaE -eaE -eaE -eaE -sNA -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -kBT -kBD -uiK -uiK -sRA -uiK -uiK -uiK -hRu -uiK -uiK -uiK -uiK -keb -uiK -sRA -kor -vae -uiK -uiK -sRA -clY -clY -clY -xGc -lvb -hJZ -hJZ -hJZ -hJZ -hJZ -hJZ -slO -clY -pvn -clY -hJZ -gVv -xGc -xVz -xVz -gsS -hJZ -yeT -sXR -sXR -sXR -wfG -sXR -sXR -vQx -eqT -gVk -yiM -yiM -yiM -yiM -yiM -yiM -yiM -fGK -vXc -vXc -vXc -vXc -vXc -vXc -vXc -yiM -yiM -yiM -yiM -yiM -yiM -yiM -hBQ -gbB -nJv -xLL -nCs -olB -nJv -lHo -rsv -nJv -xLL -xLL -xLL -nJv -kmq -srV -max -max -ofi -peZ -nab -qpb -jcS -toU -oNr -xGo -cTJ -pxb -pxb -pxb -pwa -pwa -pxb -pxb -pma -wlU -wlU -wlU -dSH -pxb -pxb -pxb -pxb -pwa -pwa -pxb -pwa -pwa -pwa -pxb -xqp -xqp -cpy -cpy -eYM -lCk -wfP -wfP -wfP -eYM -wfP -wfP -wfP -jJF -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(32,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -pmV -uPc -cDv -cDv -cDv -maO -maO -cDv -cDv -cDv -uPc -rje -cDv -maO -ctC -maO -maO -saC -saC -saC -saC -saC -fop -chm -chm -chm -saC -pGy -uQI -pLj -tya -eKd -bzC -xpg -xpg -qbK -ioH -mcN -uWO -uWO -kiN -fei -eaE -gci -doj -eaE -gSw -eaE -nTO -gge -eaE -sNA -ilK -uWO -uWO -uWO -uWO -mcN -uWO -vtc -uWO -uWO -uWO -rZt -tUb -tUb -jfA -sRA -sRA -uiK -uiK -hRu -uiK -uiK -uiK -uiK -nCt -sRA -asn -sRA -iWo -uiK -uiK -uiK -wKj -clY -clY -hJZ -slO -xVz -xVz -kfq -hJZ -hJZ -hJZ -eUt -clY -oea -clY -hJZ -hJZ -hJZ -hJZ -clY -clY -yeT -gKO -nLm -nLm -nLm -uYk -ulE -nLm -nLm -nLm -rMF -gVk -yiM -yiM -yiM -yiM -yiM -yiM -fGK -vXc -vXc -vXc -vXc -vXc -vXc -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -lVB -eKl -eKl -eKl -eKl -fzJ -lJm -hZr -fZr -eKl -xlA -aey -aey -srV -max -max -max -ofi -peZ -nab -wRO -nxS -nxS -csA -xGo -cTJ -pxb -pxb -pwa -pwa -pwa -pwa -pwa -pwa -pxb -pxb -pxb -pxb -pxb -pxb -pxb -pwa -pwa -pwa -pwa -pwa -pwa -pxb -pxb -pwa -xqp -cpy -cpy -eYM -wcj -wfP -wfP -wfP -eYM -lgR -wfP -wfP -jJF -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(33,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -pmV -maO -maO -maO -maO -pdz -maO -cLt -maO -hyB -swo -xCz -cDv -maO -maO -hyB -maO -cDv -rje -saC -saC -saC -chm -chm -chm -tiQ -saC -oda -jsD -tCh -kOQ -eKd -bzC -xpg -pPt -sDS -llZ -xvV -uWO -uWO -kiN -fei -eaE -bKJ -fsQ -fej -eaE -eaE -gbH -hPd -eaE -sNA -eaE -uWO -uWO -iTW -uWO -mcN -vtc -vtc -vtc -uWO -uWO -kSR -lBE -lBE -ihq -rWS -sRA -sRA -uiK -hRu -uiK -uiK -orE -sRA -sRA -sRA -uiK -uiK -viN -rGi -uiK -uiK -hJZ -clY -hJZ -hJZ -slO -hJZ -hJZ -hJZ -hJZ -hJZ -wKj -eUt -sjY -oea -clY -clY -clY -clY -clY -clY -clY -pWQ -nLm -nLm -tgl -xRe -tAz -adA -vsP -sJi -nLm -nLm -eBN -yiM -yiM -yiM -yiM -yiM -fGK -fGK -fGK -vXc -vXc -vXc -vXc -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -dwd -qQi -qQi -puY -vXc -vXc -wYa -vXc -vXc -vXc -xlA -max -max -max -max -max -max -ofi -peZ -jNA -wRO -tdk -tdk -csA -xjb -cTJ -pxb -pwa -pwa -pwa -xqp -pwa -pwa -pwa -pwa -pwa -pwa -pwa -pxb -pxb -pwa -pwa -pwa -pwa -pwa -pwa -pxb -pxb -pxb -pxb -pxb -cpy -cpy -eYM -ozU -wfP -wfP -jJF -eYM -vto -wfP -wfP -igN -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(34,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -vch -rje -pmV -uPc -cDv -cDv -cDv -gUC -maO -cDv -cDv -cDv -uPc -agc -cDv -maO -maO -maO -maO -cDv -rje -rje -saC -saC -saC -chm -saC -tiQ -saC -oJS -oJS -tCh -arc -eKd -bzC -xpg -xpg -ujZ -llZ -xvV -uWO -uWO -kiN -fOR -eaE -qGV -gge -jsQ -uWO -cWf -gwt -eaE -eaE -sNA -eaE -uWO -uWO -uWO -gcY -oqh -uWO -vtc -vtc -uWO -uWO -kTn -fiB -cwN -cJm -rWS -rWS -kQW -wbt -rvh -uiK -uiK -rWS -asn -sRA -uiK -uiK -asn -uiK -uiK -sRA -ien -ien -ien -hJZ -hJZ -slO -hJZ -hJZ -hJZ -yeT -sXR -sXR -wfG -sXR -oea -hxZ -sjY -clY -clY -clY -clY -sjY -pWQ -nLm -xSj -jfZ -jfZ -sWt -fgk -tHJ -jfZ -gfc -nLm -eBN -yiM -yiM -yiM -yiM -yiM -omZ -fGK -vfQ -vfQ -vfQ -vfQ -gVk -vXc -vXc -yiM -yiM -yiM -yiM -pWR -rwE -rwE -rwE -rwE -rwE -rwE -rwE -rXb -rXb -pnE -umf -umf -vXc -xlA -max -max -max -max -max -ofi -tZh -peZ -nab -tht -nxS -iwk -gIz -xGo -cTJ -pwa -pwa -pwa -pxb -xqp -xqp -pwa -pwa -xqp -xqp -xqp -pwa -pwa -pwa -pwa -pwa -pwa -kMl -bTu -bTu -bTu -bTu -bTu -bTu -cpy -cpy -cpy -eYM -bcE -wfP -jJF -jJF -eYM -vto -jJF -wfP -igN -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(35,1,1) = {" -bMX -tiQ -saC -saC -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -rje -pmV -uPc -uPc -uPc -uPc -gpP -maO -uPc -uPc -uPc -uPc -agc -cDv -cDv -cDv -cDv -cDv -cDv -rje -rje -saC -saC -saC -saC -saC -tiQ -tiQ -oJS -oJS -oJS -oJS -bzC -bzC -bzC -xpg -ujZ -bkE -xvV -uWO -oTX -kiN -fOR -eaE -sNA -doF -gFp -uWO -fkB -uWO -eaE -eaE -sNA -eaE -eaE -uWO -uWO -iod -uWO -uWO -uWO -vtc -uWO -uWO -kUJ -mDw -cqe -ien -sRA -sRA -kXo -sRA -rWS -asn -ien -asn -asn -ien -asn -uiK -ien -uiK -uiK -ien -ien -ien -hJZ -hJZ -hJZ -slO -hJZ -hJZ -yeT -oOS -nLm -sgY -pgS -sgY -nLm -oOS -hxZ -sjY -clY -clY -sjY -sjY -pWQ -rMt -brE -uOs -tUM -eAm -uOs -tUM -uOs -geQ -rMt -eBN -yiM -yiM -yiM -yiM -omZ -gbB -nLm -sgY -sgY -sgY -nLm -rMF -gVk -vXc -vXc -yiM -yiM -yiM -wsY -yiM -yiM -yiM -yiM -yiM -yiM -vXc -vXc -omZ -vfQ -vfQ -vfQ -vfQ -xlA -mBX -max -max -max -max -ofi -tZh -peZ -nab -cOI -csA -vCQ -nKI -xGo -cTJ -pwa -pwa -pxb -cpy -pxb -pxb -pxb -pwa -ylN -utO -bTj -sba -gfP -utO -cmr -pwa -pwa -gsf -tFx -tFx -bBq -bBq -bBq -tFx -tFx -cpy -cpy -eYM -qWg -wfP -jJF -eYM -eYM -eYM -aeh -wfP -wfP -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(36,1,1) = {" -bMX -tiQ -tiQ -saC -saC -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -trM -uPc -cDv -cDv -cDv -maO -maO -cDv -cDv -cDv -uPc -agc -rje -qCX -rje -rje -rje -rje -rje -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -oJS -oJS -oJS -oJS -bzC -bzC -xpg -xpg -hhm -bkE -spu -uWO -uWO -kiN -fOR -eaE -sNA -doF -eaE -gSw -gFp -eaE -gIv -eaE -lvx -eaE -eaE -uWO -uWO -ioA -uWO -uWO -uWO -uWO -uWO -uWO -ien -ien -ien -ien -ien -clY -eUt -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -ien -hJZ -hJZ -hJZ -hJZ -slO -hJZ -yeT -oOS -nLm -nLm -eNh -hCX -jVw -nLm -nLm -oOS -sXR -sXR -sXR -sXR -sXR -oOS -quA -brE -oPu -uOs -tii -xuX -fjP -uOs -ppf -quA -rMF -vfQ -vfQ -vfQ -vfQ -rMF -nLm -nLm -gLI -vgh -bOZ -nLm -nLm -rVa -gVk -vXc -vXc -vXc -yiM -wsY -yiM -yiM -yiM -yiM -yiM -vXc -vXc -omZ -rMF -mBF -rMF -mBF -rMF -mBF -fnA -mBX -max -max -max -tZh -dOM -fnA -tFx -xGo -oII -xGo -tFx -tFx -cTJ -pxb -pxb -cpy -cpy -pxb -pxb -pxb -ylN -aii -tFx -tFx -oII -tFx -tFx -kaC -bTu -bTu -vem -tFx -ewM -thf -tdk -thf -bQo -tFx -eYM -eYM -eYM -eYM -jhV -eYM -eYM -eYM -eYM -eYM -jhV -eYM -eYM -sRM -hTe -eYM -cpy -cpy -cpy -bMX -"} -(37,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -rje -pmV -maO -maO -maO -maO -maO -maO -maO -pdz -maO -xWZ -fLo -wnG -wnG -wnG -wnG -wnG -wnG -eLV -saC -saC -saC -saC -saC -tiQ -rSA -tiQ -arc -oJS -oJS -oJS -bzC -bzC -bzC -xpg -ujZ -bkE -mcN -uWO -uWO -kiN -fei -enS -sNA -dqr -eaE -egV -eaE -eaE -gJm -eaE -sNA -eaE -eaE -aNw -kQS -uWO -uWO -uWO -uWO -uWO -ien -ien -ien -sjY -hJZ -ien -clY -clY -rnG -kYm -hJZ -hJZ -ien -hJZ -hJZ -ien -hJZ -hJZ -ien -clY -clY -ien -hJZ -hJZ -hJZ -hJZ -hJZ -slO -yeT -gKO -nLm -nLm -xWS -brE -lnQ -brE -cNM -nLm -nwj -uMw -uMw -nwj -uMw -uMw -nwj -nLm -uxB -fzS -grc -ton -fcr -dpC -rPC -sPQ -nLm -nwj -uMw -uMw -uMw -uMw -nwj -nLm -cBC -hcs -fms -eqo -eqo -nLm -nLm -rMF -gVk -vXc -vXc -umf -xTV -umf -yiM -yiM -yiM -vXc -vXc -omZ -gbB -mBF -mBF -mBF -mBF -mBF -mBF -mBF -fnA -mBX -max -max -tZh -peZ -tFx -tFx -omt -csA -kRK -tFx -tFx -cTJ -pxb -pxb -pxb -pxb -pxb -pxb -pwa -qST -tFx -tFx -vnN -thf -qPO -tFx -tFx -cpy -cpy -vem -tFx -bgB -prS -tdk -thf -awX -tFx -eYM -kkm -ozU -wfP -jJF -jJF -eYM -eYM -eYM -luW -wfP -jJF -eHP -sRM -eYM -eYM -cpy -cpy -cpy -bMX -"} -(38,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -rje -rje -pmV -uPc -uPc -uPc -kmd -cDv -cDv -uPc -uPc -kmd -uPc -sLP -rje -rje -rje -rje -rje -rje -eLV -eLV -saC -saC -saC -saC -tiQ -oNi -kZP -mBg -vSd -oJS -oJS -oJS -bzC -xpg -xpg -qbK -llZ -mcN -uWO -uWO -kiN -fei -eaE -jev -dBC -dTv -eaE -jsQ -eaE -heB -eaE -aeR -aeR -aeR -aeR -uWO -uWO -uWO -uWO -uWO -uWO -uWO -ien -hmz -nfU -hJZ -twP -clY -clY -clY -slO -hJZ -hJZ -hJZ -uAb -lsG -lsG -lsG -qDl -clY -vjG -bnZ -sXR -sXR -sXR -sXR -hxZ -xGk -slO -pWQ -nLm -nLm -foI -brE -uOs -eAm -uOs -ubQ -nLm -dyZ -kmG -xxQ -rPo -cjJ -cjJ -sWH -nLm -nLm -nLm -sgY -uYk -iNu -sgY -nLm -nLm -nLm -ngp -sqP -sWI -opT -qsj -xkz -nLm -apX -lUi -fjP -guB -tyM -nUE -nLm -nLm -eBN -vXc -vXc -vXc -wYa -vXc -vXc -yiM -vXc -umf -omZ -rMF -mBF -mBF -nnR -xXS -eEl -kPQ -nNP -mBF -mBF -kmq -mBX -max -max -peZ -nab -iWr -afK -iwk -iwk -csA -xGo -cTJ -pxb -pxb -pxb -pxb -pxb -pxb -pwa -qST -tFx -iqP -csA -tdk -dAo -vuR -tFx -cpy -cpy -cpy -tFx -wRO -thf -thf -thf -wRO -tFx -xbq -bGf -wfP -wfP -wfP -jJF -vto -eYM -geM -jJF -wfP -wfP -eHP -sRM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(39,1,1) = {" -bMX -cpy -tiQ -saC -saC -saC -rje -rje -rje -rje -rje -rje -rje -rje -rje -pmV -uPc -tKo -hTU -tiQ -cDv -cDv -tKo -hTU -tiQ -sLu -sLP -rje -rje -rje -eLV -rje -eLV -eLV -eLV -eLV -saC -saC -saC -tiQ -loL -wMf -slw -vul -tjN -kOU -oJS -bzC -xpg -pPC -sDS -llZ -mcN -uWO -uWO -kiN -fOR -eaE -sNA -eaE -eaE -bex -eaE -gFp -eaE -hZZ -bFs -eaE -eaE -eaE -uWO -uWO -ilK -vtc -uWO -uWO -uWO -ien -hmM -clY -hJZ -twP -clY -clY -clY -slO -hJZ -clY -hJZ -rmX -xkO -xkO -xkO -lUh -clY -clY -gdC -vcK -snm -iQk -xLu -dpa -tPv -slO -pWQ -nLm -foI -brE -uOs -mQy -mMv -uOs -brE -sgY -cib -bkl -vUf -qfu -qfu -vUf -lGB -cIb -sgY -udI -njc -xJa -tiP -geQ -ohK -sgY -aIS -ppZ -ruS -rYE -ruS -ruS -pPa -sgY -hCb -trj -tUM -uOs -fjP -brE -ylG -nLm -eBN -vXc -vXc -vXc -wYa -cpy -vXc -vXc -vXc -vXc -hBQ -mBF -mBF -pqY -lyK -uOb -eiS -uQp -uQp -cQR -mBF -mBF -dwq -max -max -peZ -nab -sDK -pyk -tdk -nxS -csA -xjb -cTJ -pxb -pxb -pxb -pxb -pxb -pwa -pwa -qST -xGo -rEd -pvS -tdk -fhi -oXx -tFx -tFx -tFx -tFx -tFx -wRO -nlS -tdk -wRO -bob -eYg -dYU -wfP -wfP -wfP -wfP -wfP -vfW -eYM -aSU -wfP -wfP -wfP -jJU -sRM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(40,1,1) = {" -bMX -cpy -tiQ -tiQ -saC -saC -gMY -rje -vch -rje -chm -chm -saC -rje -rje -pmV -tiQ -tiQ -tiQ -tiQ -cDv -cDv -tiQ -tiQ -tiQ -tiQ -feq -bXa -bXa -kRM -eLV -eLV -eLV -eLV -eLV -eLV -saC -saC -tiQ -tiQ -arc -vjH -vhp -vhp -xAg -fbl -oJS -bzC -xpg -xpg -qbK -ise -mcN -uWO -uWO -kiN -fei -eaE -nOX -eaE -dYK -gFp -eaE -eaE -eaE -hUZ -sNA -enS -eaE -eaE -uWO -uWO -vtc -vtc -vtc -pit -ien -ien -ien -hAs -hJZ -twP -clY -hJZ -clY -slO -hJZ -clY -clY -rmX -xkO -oFi -xkO -lUh -clY -clY -myg -xaL -aKX -aKX -swJ -dpa -tPv -slO -pWQ -sgY -wyD -fjP -ltC -jMZ -prW -sPk -sPk -gVl -xrH -jDA -akh -akh -iIK -uUB -lLl -vgc -jJu -auF -pQA -jhl -sPk -dnM -ujS -uCF -axK -cDH -cDH -gbe -vyz -czd -cDH -ntf -dnM -rou -xXN -tUM -uOs -uOs -brE -sgY -eBN -vXc -vXc -jue -wYa -cpy -cpy -vXc -vXc -yiM -hBQ -rMF -eDT -wHY -uQp -nqY -mMp -cem -wvs -alR -eDT -kbS -dwq -max -max -peZ -nab -iKn -mbV -nxS -nxS -aHN -xGo -vem -bTu -ien -bTu -bTu -bTu -ien -bTu -wPo -xGo -fOw -thf -jWT -uor -tdk -pOE -mDH -oUr -aNm -pOE -awX -nlS -tdk -wRO -plj -tFx -cLB -sBP -jJF -jVc -jJF -vto -eYM -eYM -aYL -wfP -jJF -jJF -jJU -sRM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(41,1,1) = {" -bMX -cpy -cpy -tiQ -saC -ctC -gZI -pDt -bXa -chm -chm -saC -saC -saC -rje -pmV -wTv -tJk -ktX -tiQ -cDv -cDv -tJk -rUX -tiQ -fwo -sLP -rje -rje -eLV -eLV -eLV -rje -rje -eLV -eLV -saC -saC -tiQ -oNi -mBg -vjH -vhp -vhp -xAg -uSx -bzC -bzC -bzC -xpg -qbK -ise -mcN -oTX -uWO -kiN -fei -eaE -sNA -eaE -eaE -doF -eaE -eaE -bex -eaE -teV -eaE -jvf -eaE -uWO -uWO -vtc -vtc -vtc -uWO -uWO -ien -prZ -pza -hJZ -twP -hJZ -hJZ -clY -eUt -hJZ -hJZ -clY -rmX -xkO -dOZ -xkO -lUh -clY -clY -pWQ -xaL -aKX -gjT -mwY -dpa -tPv -slO -pWQ -sgY -apX -xEB -trj -fjP -fjP -rox -eqo -sgY -kLl -klY -klY -rbj -qfu -qfu -qfu -lEP -sgY -ond -htY -eAm -uOs -orf -geQ -sgY -sqP -ruS -xNe -ruS -mtt -aFN -iXH -sgY -eqo -rox -fjP -uOs -uOs -lsD -cuy -sgY -eBN -vXc -vXc -upz -tDd -wLh -cpy -yiM -yiM -yiM -hBQ -rMF -eDT -rYz -uQp -nqY -cbl -gKY -pKp -dwi -rax -fnA -eCn -max -max -peZ -tFx -tFx -cVx -ohf -ify -tFx -tFx -myF -myF -ien -myF -myF -myF -ien -myF -hfM -tFx -nJM -thf -uor -uor -kOK -tFx -tFx -tFx -tFx -tFx -bgB -tVq -wRO -bob -iCO -tFx -eYM -eYM -eYM -eYM -eYM -eYM -eYM -eYM -aYL -wfP -wfP -wfP -eHP -sRM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(42,1,1) = {" -bMX -cpy -cpy -tiQ -tiQ -ctC -maO -bpX -rje -chm -saC -saC -saC -saC -rje -pmV -wTv -uPc -uPc -kmd -cDv -cDv -uPc -saC -saC -uPc -sLP -rje -rje -rje -eLV -rje -rje -rje -pmV -eLV -eLV -tiQ -tiQ -tgt -wMf -bQd -vhp -vhp -wbm -jOv -qam -bzC -xpg -xpg -qbK -ise -mcN -uWO -uWO -kiN -fei -eaE -sNA -gSw -eaE -eaE -fvx -eaE -eaE -eaE -mPa -eaE -jFr -eaE -uWO -uWO -oTX -vtc -vtc -uWO -uWO -ien -qzy -eyM -gfi -twP -hJZ -hJZ -clY -eUt -clY -hJZ -hJZ -uGd -sek -fuw -sek -qma -clY -hJZ -pWQ -vsW -lwV -qRL -haJ -dpa -kfq -slO -qSE -nLm -jty -dPO -mOi -geQ -aJB -iDY -eNh -nLm -pgT -hql -cIb -ejk -vmr -vmr -aYV -aYV -nLm -nLm -vmB -trj -uOs -fVc -nLm -nLm -tAX -xnC -rVV -cQE -fcE -qzn -gRF -nLm -kSz -rBG -uxU -wIc -brE -iDY -kSz -sgY -eBN -vXc -vXc -vXc -wth -wYa -yiM -yiM -yiM -yiM -hBQ -mBF -mBF -bWU -mMp -nqY -dFA -gKY -eiS -xpZ -mBF -mBF -dwq -max -max -low -fnA -tFx -jAm -jAm -jAm -tFx -fnA -aey -aey -ien -aey -aey -aey -ien -aey -hWN -nab -sWi -uor -xOA -thf -rKD -tFx -cpy -cpy -cpy -tFx -tFx -tyF -awX -plj -tFx -tFx -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eYM -eYM -jJF -mzT -jJF -jJF -eYM -eYM -cpy -cpy -cpy -cpy -bMX -"} -(43,1,1) = {" -bMX -cpy -cpy -cpy -tiQ -tiQ -maO -plL -gMY -rje -saC -saC -saC -chm -glY -vfp -vkJ -vkJ -wnG -wnG -wnG -wnG -wnG -wnG -mvG -wnG -pmL -rje -rje -rje -bXa -rje -rje -pUt -lvm -maO -tiQ -tiQ -sgC -vRz -rwL -vhp -vhp -ulk -avk -kQK -fbl -bzC -xpg -pPt -sDS -ise -mcN -uWO -uWO -kiN -uWO -uWO -iTW -eaE -eaE -eaE -eaE -eaE -eaE -eaE -vUd -eaE -jFG -eaE -uWO -iTW -uWO -aNw -vtc -uWO -ien -ien -ien -pzo -hJZ -twP -hJZ -qNh -clY -rnG -yhK -yhK -wBA -wBA -wBA -wBA -yhK -yhK -wBA -wBA -mWN -qKa -qKa -gbM -vha -uiE -hJZ -eUt -tva -nLm -nLm -nLm -nLm -qep -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -hHV -ngD -gRw -xPo -mxJ -cnh -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -qep -nLm -nLm -nLm -eBN -vXc -umf -vXc -vaZ -wYa -yiM -yiM -yiM -yiM -hBQ -rMF -eDT -ium -oVR -eKH -itI -mVt -uQp -pyG -eDT -fnA -dwq -max -max -max -low -aey -aey -aey -aey -aey -srV -ofi -max -max -max -max -max -max -max -juL -nab -dGR -csA -tdk -gIz -cnr -tFx -cpy -cpy -cpy -cpy -tFx -tFx -tFx -tFx -tFx -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eYM -eYM -eYM -liq -eYM -eYM -cpy -cpy -cpy -cpy -cpy -bMX -"} -(44,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -ctC -maO -plL -gMY -rje -saC -chm -chm -chm -glY -glY -rje -rje -rje -rje -rje -rje -rje -bXa -rje -agc -rje -rje -vch -bXa -rje -pUt -lvm -maO -maO -tiQ -dLr -vRz -eIo -ecH -rmx -rmx -xAg -jOv -sGN -ggm -bzC -nDM -nDM -hhO -pTK -dLP -tfP -tfP -tfP -tfP -bIe -tfP -tfP -eaE -eaE -eaE -tfP -jsQ -eaE -sNA -eaE -tfP -eaE -tfP -tfP -oeX -tfP -tfP -tfP -tfP -ien -hJZ -hJZ -yeT -twP -sXR -sXR -sXR -sXR -sXR -sXR -sXR -sXR -sXR -sXR -sXR -sXR -hxZ -hJZ -hJZ -clY -clY -iPu -wBA -wBA -wBA -ldM -pWQ -nLm -apX -eNA -iCW -sMf -jXM -oGd -gLI -jXM -sMf -iQG -jXM -oGd -tGA -jXM -oGd -kZE -jXM -afc -ngD -dNm -tUM -jBJ -kbB -jXM -iCW -oGd -jXM -qfJ -sMf -jXM -ckC -oGd -jXM -iCW -sMf -jXM -oGd -lAy -ueh -nLm -eBN -vXc -umf -vXc -vXc -wYa -umf -yiM -yiM -yiM -hBQ -rMF -eDT -xGi -aiA -bxq -uQp -uQp -mMp -pyG -eDT -fnA -dwq -ofi -ofi -max -max -max -ofi -ofi -ofi -ofi -ofi -max -max -max -max -max -max -max -max -juL -tFx -tFx -wyE -fVj -pye -tFx -tFx -cpy -fnA -aey -aey -aey -aey -aey -aey -aey -aey -fnA -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eYM -fpR -inT -nHn -eYM -cpy -cpy -cpy -cpy -cpy -bMX -"} -(45,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tiQ -maO -maO -plL -gMY -chm -chm -chm -chm -glY -glY -rje -rje -rje -saC -saC -glY -glY -glY -rje -agc -rje -rje -rje -bXa -pUt -lvm -maO -maO -tiQ -tiQ -arc -eIo -ecH -rmx -rmx -saC -xAg -opB -bzC -bzC -bzC -bzC -nDM -hhO -pTK -dLP -tfP -ylC -qyG -qyG -qyG -qyG -qyG -hfS -hfS -hfS -hfS -hPO -hWV -mqU -hfS -hfS -hfS -qyG -qyG -qyG -qyG -gMc -tfP -uSY -ien -pAp -hJZ -pWQ -xtb -xtb -xtb -gWY -gWY -gWY -xtb -xtb -xtb -xtb -xtb -xtb -xtb -dpa -clY -hJZ -hJZ -hJZ -slO -hJZ -hJZ -clY -clY -pWQ -nLm -wmm -eJm -hDE -yfa -nLm -jiK -rpj -nLm -prH -uvw -nLm -jiK -rpj -nLm -jiK -ill -nLm -vPN -kvI -dNm -qEi -jBJ -hBH -nLm -uET -gnb -nLm -uET -jiK -nLm -xVy -jiK -nLm -uET -jiK -nLm -tLU -koj -eza -nLm -eBN -vXc -vXc -vXc -xLU -pnE -vXc -umf -yiM -yiM -hBQ -mBF -mBF -sWO -suH -nfY -uQp -mMp -jFX -mBF -mBF -mBF -dwq -ofi -ofi -ofi -max -max -max -ofi -ofi -ofi -ofi -ofi -max -max -max -max -max -max -max -uCE -hpu -tFx -jAm -jAm -jAm -tFx -jjE -qQw -srV -ofi -ofi -ofi -ofi -ofi -ofi -ofi -ofi -low -aey -aey -fnA -jfL -jfL -jfL -jfL -jfL -jfL -kMK -sow -mZd -jfL -jfL -jfL -cpy -cpy -cpy -bMX -"} -(46,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -maO -maO -plL -ewD -chm -chm -chm -chm -glY -bXa -bXa -saC -saC -rje -rje -bXa -rje -rje -agc -rje -rje -pUt -aMK -lvm -maO -maO -uPc -tiQ -oNi -mBg -vjH -vhp -rmx -saC -saC -xAg -vPU -nba -pKI -lqb -lqb -lqb -lUK -pTK -dLP -tfP -yim -bou -bcf -tfP -tfP -tfP -eaE -giL -eaE -eaE -eaE -hZZ -aeR -aeR -aeR -aeR -tfP -tfP -tfP -tfP -yim -tfP -ien -ien -ien -pAp -pWQ -xtb -eFn -nZT -plc -lpR -qAw -bVR -bqO -xtb -qTU -xnG -cZE -xtb -jyf -sXR -sXR -esD -jEr -fqP -sXR -sXR -sXR -esD -xWb -nLm -weR -nLm -nLm -veY -nLm -nLm -tPL -nLm -nLm -tPL -nLm -nLm -tPL -nLm -nLm -tPL -nLm -nLm -mXd -eAm -fjP -daf -nLm -nLm -veY -nLm -nLm -aWm -nLm -nLm -veY -nLm -nLm -veY -nLm -nLm -aWm -weR -nLm -nLm -eBN -vXc -vXc -vXc -wYa -vXc -vXc -vXc -vXc -yiM -hBQ -rMF -mBF -nZu -paF -qaq -uQp -oOH -tkz -mBF -fnA -fnA -srV -tZh -tZh -ofi -ofi -max -max -max -max -ofi -ofi -ofi -ofi -ofi -max -max -max -max -max -ofi -uCE -xnL -xnL -xnL -xnL -xnL -fOa -srV -ofi -ofi -max -ofi -tZh -tZh -ofi -ofi -ofi -ofi -ofi -ofi -peZ -jfL -srE -inD -sId -kFR -jfL -iQK -xGP -sow -dKV -cPd -jfL -cpy -cpy -cpy -bMX -"} -(47,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -maO -hyB -maO -maO -chm -chm -saC -chm -rje -rje -rje -rje -rje -rje -kSB -grR -bmK -bmK -plf -rje -pUt -lvm -saC -tiQ -caD -mFy -mFy -tiQ -arc -vSd -ffx -vhp -icG -saC -saC -mST -pzA -evo -fbl -pKI -sWn -lfo -lUK -pTK -dLP -tfP -yim -tfP -tfP -tfP -tfP -eaE -eaE -giL -bex -eaE -eaE -eaE -sNA -eaE -eaE -tfP -tfP -eFT -bcf -tfP -yim -tfP -tfP -ien -cwE -hJZ -pWQ -gWY -dyq -plc -pKL -jbK -pKL -pgK -bAL -gWY -lDW -rhN -tVZ -xtb -xtb -gWY -gWY -xtb -nTv -lbP -iiE -iiE -iiE -oYa -nTv -nLm -dAk -eqo -nUE -ldz -dTN -eqo -qWW -byj -fzn -qWW -dAk -eqo -qWW -geQ -tSj -qWW -nLm -xav -rUA -maF -uOs -orf -eIh -nLm -qWW -njc -byj -qWW -ovh -eQD -qWW -acu -cSI -dNm -nHJ -geQ -qWW -geQ -iUZ -nLm -aiQ -vXc -vXc -qfm -wYa -vXc -vXc -vXc -vXc -umf -hBQ -rMF -mBF -mBF -mBF -cID -kvt -mBF -mBF -mBF -mBF -dwq -max -tZh -ofi -ofi -ofi -max -max -max -max -ofi -ofi -ofi -ofi -ofi -ofi -max -max -max -max -max -ofi -ofi -ofi -ofi -ofi -ofi -max -max -ofi -ofi -max -max -ofi -ofi -max -ofi -ofi -ofi -ofi -ofi -peZ -dOs -kaB -jFB -jFB -sFZ -dOs -qUZ -tUj -sow -sow -lun -jfL -jfL -cpy -cpy -bMX -"} -(48,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -maO -maO -uPc -maO -maO -saC -saC -chm -rje -rje -rje -rje -rje -rje -agc -glY -glY -vch -pUt -ewD -lvm -saC -saC -tiQ -bAK -fWC -qbU -tiQ -utb -aze -ewr -vhp -saC -saC -saC -saC -vhp -bNm -pzA -iWP -tLu -gSo -lUK -pTK -dLP -tfP -yim -tfP -tfP -tfP -tfP -eaE -eaE -giL -fFA -gzu -eaE -gFp -sNA -jqa -enS -tfP -tfP -tfP -tfP -tfP -yim -tfP -tfP -ien -clY -clY -xds -xtb -tRA -rKM -jFh -aFg -tRA -tFM -tRA -xtb -drc -sNZ -owU -lDW -owU -owU -owU -xtb -mLB -lNQ -mLB -mLB -mLB -pLy -mLB -nLm -geQ -lEv -lyH -hbX -lyH -lyH -aJo -mNV -mNV -coO -mNV -mNV -tuF -geQ -nGW -oWs -nLm -rBP -htY -pJW -tUM -orf -rnn -nLm -tii -lyH -lyH -gRw -mNV -mNV -xfX -qAp -lyH -tii -lyH -lyH -tii -btY -cTA -nLm -vEe -vXc -nRs -vXc -wYa -vXc -vXc -vXc -umf -omZ -gbB -mBF -mBF -fdn -xci -bcQ -nFd -nFd -vZl -eDT -fnA -dwq -max -max -ofi -ofi -ofi -max -max -max -ofi -ofi -ofi -max -ofi -ofi -ofi -ofi -max -ofi -max -max -ofi -ofi -ofi -ofi -ofi -max -max -max -ofi -max -max -max -max -max -max -max -ofi -ofi -tZh -ofi -peZ -jfL -uZq -uOy -fzj -ohu -jfL -hQy -sow -fzs -sow -sow -gcR -jfL -jfL -cpy -bMX -"} -(49,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -maO -maO -maO -maO -maO -saC -saC -saC -ewD -ewD -ewD -gMY -rje -rje -rae -gli -gli -gli -uOn -saC -saC -saC -tiQ -tiQ -mFy -mFy -bmf -tiQ -arc -aze -ewr -vhp -vhp -saC -saC -saC -xlU -cit -dSP -eFM -lSt -snG -aaX -ptG -fuo -qyG -rOf -bIe -tfP -eFT -tfP -dEc -eaE -eFt -eaE -gFp -eaE -eaE -sNA -hUZ -eaE -tfP -tfP -tfP -tfP -pjJ -yim -tfP -ien -ien -ien -clY -sBN -glo -pgK -plc -plc -nJg -plc -pgK -pgK -glo -lDW -sNZ -rhN -rhN -sNZ -sNZ -owU -glo -myA -tYZ -kdy -kdy -kdy -tMk -pRC -rMt -brE -htY -fjP -pJW -fjP -lmN -pNf -uOs -uOs -weR -weR -nLm -ktx -waH -rkB -hmr -uNi -wfW -uyP -esa -qvJ -jDJ -wfW -qYO -enP -dnM -dnM -vGG -nLm -weR -nLm -ivk -dnM -xIW -sPk -dnM -esa -duf -geQ -rMt -vEe -vXc -wth -vXc -wYa -vXc -vXc -yiM -omZ -rMF -mBF -mBF -tPB -fdn -xci -tml -nFd -nFd -njP -eDT -fnA -dwq -max -max -ofi -ofi -ofi -max -ofi -ofi -ofi -ofi -max -max -max -ofi -ofi -ofi -ofi -ofi -ofi -max -ofi -ofi -ofi -ofi -cpy -cpy -max -max -max -max -max -max -max -max -max -max -max -ofi -tZh -ofi -peZ -jfL -jfL -jfL -jfL -jfL -jfL -jfL -eji -sow -sow -sow -sow -nqG -jfL -cpy -bMX -"} -(50,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -cNV -xql -xql -xql -cNV -cNV -saC -saC -saC -ctC -ctC -plL -ewD -ewD -crU -ctC -ctC -ctC -saC -saC -tiQ -tiQ -tiQ -rRu -fWC -hDa -fWC -hDy -arc -aze -ewr -vhp -vhp -xlU -saC -xlU -xlU -ooA -vhp -xAg -tLu -gSo -lUK -pTK -qrh -tfP -tfP -tfP -tfP -tfP -bcf -bQr -pin -nOX -sNA -sNA -tfP -sNA -sNA -jtu -gSw -tfP -tfP -tfP -dLP -pjJ -yim -tfP -tfP -ien -clY -clY -jWv -tJH -tts -fxx -qYo -rpu -lAm -vdW -tts -tJH -wBk -did -did -nmG -did -nmG -rqM -tJH -tmp -opO -xfp -xfp -xfp -wWX -sjE -tMf -gaW -sqC -sPm -wwe -sPk -pNf -uOs -fjP -fjP -nLm -nLm -weR -dNm -tTR -jBF -qUr -quA -eJD -fuq -eAm -uOs -fjP -eJD -quA -fjP -uOs -uOs -trj -nLm -nLm -nLm -bzw -uMM -uOs -fjP -uOs -trj -orf -brE -quA -vEe -vXc -wth -vXc -wYa -yiM -yiM -omZ -rMF -mBF -mBF -ebj -qhO -qhO -geH -sHa -nFd -nFd -mBF -mBF -mBF -dwq -max -max -ofi -ofi -ofi -ofi -ofi -max -ofi -ofi -cpy -cpy -cpy -cpy -tZh -ofi -ofi -ofi -ofi -ofi -ofi -ofi -ofi -max -cpy -cpy -max -max -max -max -max -max -max -max -max -max -max -max -ofi -ofi -low -aey -cpy -cpy -cpy -cpy -jfL -jfL -jnx -sow -sow -sow -xGP -nqG -jfL -cpy -bMX -"} -(51,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -vlm -vlm -vlm -vlm -cNV -saC -saC -saC -tiQ -ctC -uMb -xEr -uMb -cCd -tiQ -tiQ -saC -saC -saC -tiQ -dDM -xzv -cON -rvA -cGv -fWC -hDy -arc -aze -ewr -vhp -vhp -vhp -xlU -xlU -vhp -fAR -jwP -avk -tLu -gSo -lUK -mLo -qrh -tfP -tfP -tfP -bIJ -tfP -tfP -dYK -eaE -eaE -bex -eaE -tfP -eaE -eaE -eaE -eaE -eFT -tfP -bIJ -dLP -pjJ -yim -tfP -tfP -ien -sjY -clY -rfK -xtb -lWF -pKL -kae -moO -kae -kae -hKT -xtb -jYf -kwp -cwd -sNZ -sNZ -sNZ -owU -xtb -esY -lNQ -mLB -mLB -mLB -mLB -esY -nLm -geQ -wCp -xuX -qWW -ttb -kaZ -ttb -ttb -ttb -ttb -ttb -eJD -qWW -toC -cKz -brE -nLm -ulN -rUA -dNm -tUM -orf -pml -nLm -kaZ -kaZ -ttb -dNm -fjP -ttb -kaZ -kaZ -ttb -kaZ -ttb -xuX -pJW -gKU -xjk -nLm -vEe -vXc -puY -yiM -wsY -yiM -omZ -gbB -mBF -mBF -hDC -esT -nFd -nFd -icP -nFd -ohv -mBF -mBF -mBF -fnA -dwq -max -max -ofi -ofi -tZh -max -max -max -max -cpy -cpy -cpy -cpy -cpy -cpy -tZh -ofi -ofi -ofi -ofi -ofi -ofi -ofi -ofi -cpy -max -max -max -max -max -max -max -max -max -max -max -max -max -max -ofi -ofi -ofi -cpy -cpy -cpy -cpy -cpy -jfL -vUN -sow -sow -sow -qCw -qhS -jfL -cpy -bMX -"} -(52,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -fDR -vlm -fDR -vlm -cNV -saC -saC -saC -saC -qUK -qUK -qUK -qUK -cCX -qUK -saC -saC -saC -saC -tiQ -pJB -gYT -tVs -xjg -oGs -fWC -hDy -rnh -aze -xxX -vhp -vhp -vhp -vhp -ulk -bAI -nGs -pKI -pKI -lqb -gSo -wgn -jtG -qrh -tfP -tfP -tfP -bIJ -bIJ -tfP -wpS -wpS -eUf -fLz -wpS -gYz -wpS -xUu -wZG -wpS -tfP -bIJ -bIJ -dLP -pjJ -lCH -tfP -ien -ien -ien -sjY -bBd -gWY -kxY -plc -pKL -jbK -pKL -plc -lLU -gWY -jYf -iFf -rhN -sNZ -sNZ -sNZ -owU -xtb -nTv -oTc -iIw -iIw -iIw -ovT -nTv -nLm -njc -uqd -xuX -qWW -geQ -geQ -wIc -eqo -eqo -teb -wIc -xuX -qWW -geQ -vjE -fHq -nLm -qbJ -htY -dNm -tUM -jBJ -rpS -nLm -iDm -chB -geQ -qWW -xuX -geQ -teb -fHq -nUE -geQ -geQ -xuX -qWW -vDP -eqo -nLm -aiQ -vXc -yiM -yiM -wsY -yiM -hBQ -mBF -mBF -viC -cjv -ycE -nFd -nFd -tml -nFd -mBF -mBF -bVh -mBF -mBF -fnA -mBX -max -ofi -tZh -max -max -max -max -max -max -cpy -cpy -cpy -cpy -cpy -tZh -ofi -ofi -max -ofi -ofi -ofi -ofi -ofi -max -max -max -max -max -max -max -max -max -max -max -max -max -max -max -ofi -ofi -tZh -cpy -cpy -cpy -cpy -cpy -jfL -jfL -aTs -sow -sow -dwT -sow -jfL -cpy -bMX -"} -(53,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -kwJ -bJn -kwJ -vlm -cNV -saC -saC -saC -saC -vlm -fDR -fDR -fDR -pSF -vlm -fDR -saC -saC -saC -tiQ -guv -fWC -gNo -wlL -gYL -teI -hDy -uxO -cOa -iZo -bZR -vhp -vhp -vhp -xAg -jOv -lgq -pKI -lqb -lqb -lqb -vrx -oqC -qrh -tfP -bcf -tfP -tfP -tfP -tfP -cpy -cfm -cpy -cpy -jPL -cfm -cfm -tfP -pjJ -cfm -cfm -cfm -cfm -sog -pjJ -lCH -tfP -tfP -ien -sjY -clY -pWQ -xtb -dvm -nHc -pgK -nJg -plc -clh -wNs -xtb -pud -wyj -lDW -sNZ -sNZ -sNZ -taV -xtb -vGb -jux -hUx -hUx -cwB -dxo -gIc -nLm -nLm -weR -mYZ -dgx -weR -weR -nLm -nLm -weR -weR -nLm -mYZ -dgx -nLm -weR -nLm -nLm -nLm -kUc -xno -emb -tSA -nLm -nLm -nLm -weR -nLm -uYk -gFx -nLm -nLm -nLm -nLm -weR -nLm -quA -bEB -weR -nLm -nLm -eBN -vXc -yiM -yiM -wsY -yiM -hBQ -rMF -eDT -xYn -uYu -xci -nFd -esT -tml -iud -mBF -dMw -esT -nHe -mBF -mBF -dwq -ofi -ofi -max -max -max -max -max -max -max -max -cpy -cpy -max -ofi -ofi -ofi -max -max -max -ofi -max -ofi -max -max -max -max -max -max -iiV -agu -agu -agu -agu -agu -agu -fgv -max -max -tZh -ofi -cpy -cpy -cpy -cpy -cpy -cpy -cpy -jfL -jfL -ahA -wbQ -cXP -jfL -jfL -cpy -bMX -"} -(54,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -kwJ -vlm -kwJ -vlm -cNV -saC -saC -saC -saC -vlm -fDR -fDR -fDR -pSF -vlm -fDR -saC -saC -saC -tiQ -tiQ -opN -wId -nsK -gYL -wDN -hDy -tXf -vpA -bzd -bZR -vhp -vhp -vhp -xAg -opB -bzC -bzC -bzC -bzC -nDM -gWI -cfm -leJ -tfP -tfP -tfP -tfP -tfP -cpy -cpy -cpy -fgf -cpy -tfP -hzA -ihy -tfP -tfP -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -lCH -tfP -tfP -ien -sjY -clY -pWQ -xtb -xtb -xtb -gWY -lYD -gWY -xtb -xtb -xtb -xtb -xtb -iJw -sNZ -sNZ -sNZ -eNu -xtb -oBS -jXQ -iKF -iKF -iKF -iKF -koR -nLm -oGd -hfU -uOs -trj -inB -lep -sZK -nLm -kTx -sFQ -eLd -sPk -cKD -eAT -hGX -cnh -nLm -ulN -nPE -dNm -tUM -wkW -aJJ -nLm -oHw -xXN -tpZ -vdf -vqm -wNl -wNl -fJu -nLm -nVm -adk -xLg -smi -mNX -iga -nLm -eBN -yiM -yiM -yiM -wsY -yiM -hBQ -rMF -eDT -viR -fdn -dHy -nFd -xQj -jmE -xQj -mBF -mBF -knj -mBF -mBF -fnA -dwq -ofi -max -max -max -max -max -max -max -max -max -max -max -max -max -ofi -ofi -ofi -max -max -max -max -max -max -max -max -max -max -iiV -iKY -bZK -wLR -wLR -wLR -wLR -bZK -jTH -fgv -max -max -tZh -ofi -cpy -cpy -cpy -cpy -cpy -cpy -cpy -jfL -sow -sow -sow -vOz -jfL -cpy -bMX -"} -(55,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -cNV -kwJ -vlm -kwJ -cNV -cNV -saC -saC -saC -saC -saC -wLM -wLM -wLM -cDw -saC -saC -saC -saC -saC -tiQ -rlJ -jnL -gNo -nsK -gYL -sTm -hDy -iMC -rBz -npD -vhp -vhp -vhp -vXH -qRA -vPU -fcQ -fbl -bzC -nDM -nDM -dLP -pjJ -yim -tfP -tfP -tfP -tfP -tfP -tfP -cpy -cpy -cpy -cpy -cpy -hIp -ijv -tfP -tfP -pjJ -kcL -pjJ -pjJ -pjJ -pjJ -lCH -tfP -ien -ien -ien -clY -pWQ -xtb -xtb -xtb -wMK -aDG -qBx -pVF -pXL -pXL -pXL -xtb -cXu -sNZ -sNZ -rhN -owU -xtb -oBS -fjr -fjr -fjr -fjr -fjr -fan -nLm -oGd -euS -esq -fuv -xeA -uOs -kGj -nLm -gMB -vKf -nLm -vjB -fyC -npT -cve -pRI -nLm -dqG -htY -eAm -oPu -wkW -hxb -nLm -qUE -iWT -uJv -brE -eAm -iqa -rox -brE -jXM -iUb -ruf -nSa -oHJ -brE -gcj -nLm -eBN -yiM -yiM -yiM -wsY -vXc -hBQ -mBF -mBF -mBF -mBF -rHk -ebj -hMI -pCg -nAa -jxV -arC -esT -eGT -mBF -kmq -dwq -max -max -max -max -max -max -max -max -max -xKk -xzw -xzw -xzw -xzw -xzw -xKk -ofi -ofi -max -max -max -max -max -max -max -max -iiV -iKY -bZK -bZK -tPF -cLC -vbY -fux -bZK -bZK -jTH -fgv -max -max -max -max -cpy -cpy -cpy -cpy -cpy -cpy -jfL -jfL -sow -fzs -jfL -jfL -cpy -bMX -"} -(56,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -cNV -fDR -vlm -fDR -cNV -cNV -saC -saC -tiQ -tiQ -ldK -diG -diG -diG -qES -ixD -saC -tiQ -tiQ -saC -tiQ -oEQ -gYT -gNo -nsK -oGs -fWC -hDy -itz -iMv -tCh -vhp -vhp -bwE -kky -jTx -qzM -kSC -qam -bzC -nDM -pRh -dLP -pjJ -lCH -tfP -tfP -tfP -tfP -tfP -pjJ -vjW -cpy -cpy -cpy -cpy -cpy -tfP -tfP -tfP -tfP -pjJ -pjJ -pjJ -pjJ -tfP -yim -tfP -tfP -ien -clY -clY -pWQ -xtb -cvH -xlO -lDW -rhN -rhN -fgb -rhN -rhN -bIT -xtb -kBl -rhN -sNZ -rhN -hWj -xtb -xXR -eHC -eHC -eHC -vGd -fjr -fan -nLm -nLm -oiJ -nLm -hcs -tUM -tUM -uLn -nLm -nLm -weR -nLm -fjP -pOd -qvM -uOs -brE -nLm -sZT -qpe -pJW -rWu -wkW -xRe -nLm -nLm -nLm -nLm -nUE -trj -aSE -eaC -uiA -nLm -uJv -dZP -rGl -nLm -nLm -nLm -nLm -eBN -yiM -yiM -yiM -wYa -vXc -hBQ -rMF -eDT -khy -mBF -mBF -hVP -xQj -pCg -nAa -pcK -esT -esT -eGT -mBF -mBF -dwq -ofi -tZh -ofi -max -max -max -max -max -max -jcd -jGO -bCF -bCF -cgD -hZX -jcd -max -ofi -ofi -max -max -max -ofi -max -max -max -fni -bZK -bZK -fog -wvt -wHF -wHF -txK -czf -bZK -bZK -gol -max -max -max -max -max -cpy -cpy -cpy -cpy -cpy -cpy -jfL -sow -sow -fzs -jfL -cpy -bMX -"} -(57,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -cNV -kwJ -vlm -kwJ -cNV -cNV -unt -qSZ -fPf -vlm -tvc -fDR -vlm -vlm -pSF -fXK -saC -saC -qUK -pDr -tiQ -cqp -jnL -gNo -nsK -fha -fWC -hDy -eCO -xVG -vda -icG -uLg -jTx -kll -wJG -xAg -eai -fbl -bzC -nDM -nDM -dLP -pjJ -lCH -pjJ -tfP -pjJ -pjJ -tfP -pjJ -pjJ -vjW -cpy -cpy -cpy -vjW -inp -tfP -tfP -tfP -tfP -pjJ -pjJ -tfP -tfP -yim -tfP -tfP -ien -clY -clY -pWQ -xtb -tVM -sNZ -sNZ -sNZ -rhN -cli -rhN -rTq -mTf -gWY -hrb -rhN -kUX -sNZ -rjO -xtb -xtb -xtb -xtb -xtb -xam -fjr -fan -nLm -oVu -gYY -nLm -ygf -sPk -sPk -iQG -nLm -xlr -xXN -dZP -fjP -fjP -fjP -fjP -brE -nLm -nLm -xfl -pJW -tUM -kKW -nLm -nLm -oVu -jDY -nLm -cJZ -eAm -qBE -crP -brE -nLm -vDf -xXN -hcs -nLm -ktP -pKk -nLm -iiG -yiM -yiM -vXc -wYa -vXc -hBQ -rMF -eDT -iLW -vyD -eDT -iuq -xQj -pCg -lpq -frg -esT -esT -lmx -mBF -mBF -fnA -kfK -kfK -kfK -kfK -kfK -kfK -mBX -max -max -jcd -heI -oyu -oyu -oPF -nXG -jcd -max -ofi -ofi -max -ofi -ofi -ofi -ofi -max -max -fni -bZK -oVd -wvt -wHF -kox -xuF -wHF -wjI -ovH -bZK -gol -max -max -max -max -max -max -cpy -cpy -cpy -cpy -cpy -jfL -kJU -sow -rJO -jfL -cpy -bMX -"} -(58,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -kwJ -vlm -kwJ -bJn -cNV -vlm -gGr -qUK -vlm -tvc -vlm -kwJ -kwJ -xZC -fXK -vlm -qUK -qUK -wDl -tiQ -tiQ -tiQ -iky -hdy -hDy -hDy -hDy -hDy -fbl -aze -vhp -vhp -jUe -tdw -vhp -xAg -gMw -bzC -bzC -bzC -nDM -dLP -vjW -lCH -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -tfP -pjJ -cpy -pjJ -pjJ -tfP -yim -tfP -ien -ien -ien -clY -pWQ -xtb -tPE -pjo -lAo -lAo -lAo -fnC -rhN -rhN -mTf -gWY -oIh -rhN -jLF -rhN -uHQ -xtb -wjk -qun -odd -xtb -oBS -fjr -fan -nLm -rmY -pUm -nLm -jiK -geQ -kGP -dAk -nLm -qUE -exl -giC -geQ -brE -sMf -sMf -sMf -jXM -aOx -fBb -eAm -uar -dVb -rjS -nLm -cYP -vYo -eLd -nqt -uHW -tyM -qxc -teb -nLm -oGd -geQ -fvO -lHm -ues -pUm -nLm -eBN -yiM -yiM -gAa -uLF -vXc -hBQ -mBF -mBF -dcb -vzn -mBF -dEz -esT -rNb -aZi -pQz -esT -nFd -vex -eDT -fnA -fnA -fnA -tSL -eak -eak -eak -tSL -fnA -mBX -max -jcd -hwL -cUT -cUT -mLZ -jhr -jcd -max -ofi -ofi -ofi -ofi -tZh -cpy -cpy -max -max -fni -bZK -ppc -wvt -wHF -wHF -fPa -wHF -nvS -ahL -bZK -gol -max -max -max -max -max -max -max -max -peZ -jfL -jfL -jfL -ipD -qCw -nqG -jfL -cpy -bMX -"} -(59,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -kwJ -vlm -kwJ -vlm -cNV -vlm -vwx -qLT -vlm -tvc -vlm -kwJ -kwJ -xZC -fXK -vlm -qUK -qUK -tzR -tiQ -ihL -jnL -gNo -wCf -spD -nqi -fWC -hDy -xpf -aze -vhp -saC -saC -saC -xlU -xAg -eai -fbl -bzC -nDM -nDM -dLP -vjW -eDS -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -cpy -cpy -cpy -pjJ -tfP -yim -tfP -tfP -ien -rzq -clY -pWQ -xtb -rmt -qdc -raS -uIJ -rmt -lgN -sNZ -rhN -kpl -xtb -ohY -gtg -pAW -rhN -uHQ -xtb -lDW -owU -fgb -xtb -oBS -fjr -fan -nLm -nLm -nLm -nLm -nLm -qep -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -eVx -htY -eAm -uOs -iRh -chM -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -nLm -qep -nLm -nLm -nLm -nLm -irz -vXc -yiM -tiJ -mAE -vXc -hBQ -rMF -ieD -pyG -xee -ieD -wNC -nFd -tml -esT -mBF -tVV -eFx -hNl -dGl -fnA -fnA -tSL -tSL -ozJ -ozJ -eyz -tSL -tSL -dwq -max -xKk -jcd -jcd -jcd -jcd -jcd -xKk -max -max -ofi -ofi -ofi -tZh -cpy -cpy -max -max -omT -bZK -sVs -wHF -wvt -nwA -mTr -wHF -wjI -mHk -bZK -czG -max -max -max -max -max -max -max -max -low -fnA -jfL -jfL -mbw -qCw -nqG -jfL -cpy -bMX -"} -(60,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -fDR -vlm -fDR -vlm -cNV -cII -qCg -qUK -vlm -tvc -vlm -kwJ -kwJ -xZC -fXK -vlm -qUK -mWA -dYQ -tiQ -sKb -pUG -aMk -hka -lwM -cGv -fWC -gBR -fbl -aze -vhp -saC -saC -saC -xlU -xAg -kQK -fbl -bzC -nDM -pRh -dLP -vjW -eDS -pjJ -pjJ -mmM -buf -buf -cAI -buf -buf -buf -buf -buf -buf -uKi -pjJ -pjJ -pjJ -pjJ -cpy -pjJ -pjJ -tfP -yim -tfP -tfP -ien -puV -clY -pWQ -gWY -qBe -mqk -hLo -sTA -rwR -lgN -nxU -sNZ -lDW -xtb -afo -nxU -pAW -rhN -pVm -xtb -mdx -qSn -jLF -xtb -oBS -fjr -fan -nLm -uPD -tli -gnc -iCW -geQ -qaO -qGc -nLm -dbr -nLm -dbr -nLm -nLm -dbr -nLm -dbr -nLm -cSz -hYi -pJW -tUM -iRh -iDu -nLm -fxc -nLm -fxc -nLm -fxc -nLm -fxc -nLm -vdS -qKs -qKs -geQ -dor -kAZ -kAZ -nLm -cgz -vXc -vXc -yiM -tDd -rXb -kRF -qGf -muJ -grY -ncj -muJ -rAf -rAf -toF -qDF -ckG -nBH -pzr -jfn -mBF -mBF -sbp -tSL -jFe -xAc -gUM -gIW -uwt -tSL -dwq -max -jcd -jGO -bCF -bCF -cgD -hZX -jcd -max -ofi -ofi -ofi -max -max -tZh -cpy -max -max -yjT -hep -eNC -wvt -mTr -bQe -hiX -wMM -aGQ -aKx -oQw -wzH -max -cpy -max -max -max -max -max -max -max -peZ -jfL -wOH -ofB -sow -qhS -jfL -cpy -bMX -"} -(61,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -vlm -vlm -vlm -vlm -cNV -gxg -qCg -qUK -vlm -tvc -fDR -vlm -bJn -pSF -fXK -vlm -qUK -qUK -vlm -tiQ -aaO -iUi -yfC -iRs -djf -dDj -uAO -jHk -lfY -fra -sSr -saC -saC -saC -xlU -xAg -eai -ggm -bzC -nDM -nDM -gWI -buf -dMR -buf -buf -gWI -iAv -bZB -iAv -iAv -iAv -iAv -iAv -iAv -iAv -dLP -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -yim -tfP -ien -ien -ien -clY -pWQ -gWY -xPA -igv -hLo -tLw -aiw -lgN -nxU -rhN -owU -glo -txT -sNZ -cli -sNZ -lDW -glo -owU -gvT -jLF -gWY -oBS -fjr -nqu -cuM -cMM -dmm -thw -vWl -fjP -guB -khW -nLm -ryQ -nLm -ryQ -nLm -nLm -ryQ -nLm -ryQ -nLm -nLm -htY -pJW -xXN -sKZ -nLm -nLm -qQO -nLm -qQO -nLm -qQO -nLm -qQO -nLm -est -ruf -ruf -fjP -fjP -fjP -mRS -sgY -ePR -sDq -faQ -yiM -sPs -vXc -ktL -mBF -mBF -ggN -dbO -mBF -spm -jaO -lYR -fBu -mBF -esT -fUl -mBF -mBF -rMF -rMF -tSL -xVh -wnM -exu -xAc -qQR -kjJ -dwq -max -jcd -heI -oyu -oyu -oPF -nXG -jcd -max -ofi -ofi -max -max -max -max -ofi -tZh -tZh -yjT -aYB -meU -wHF -mTr -fDD -fDD -mTr -ufu -meU -aYB -tSb -max -cpy -cpy -cpy -max -max -max -max -max -peZ -jfL -fOd -bWC -sow -sow -jfL -cpy -bMX -"} -(62,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -cNV -xql -xql -xql -cNV -cNV -vbZ -mWA -qUK -vlm -tvc -fDR -fDR -saC -oyW -cPM -vlm -qUK -qUK -vlm -tiQ -gIP -aMT -jwJ -sEx -sEx -mlU -fWC -hDy -gCx -wAs -fXI -saC -saC -saC -luG -ehC -rnc -bzC -bzC -bzC -nDM -gWI -gWI -bSU -gWI -iAv -iAv -iAv -vZP -iAv -saC -saC -saC -saC -saC -iAv -dLP -pjJ -pjJ -tfP -pjJ -pjJ -tfP -tfP -tfP -yim -tfP -tfP -ien -clY -clY -edu -xtb -xPA -bID -rSd -bNf -aiw -nuh -bzW -nmG -rqM -tJH -rqM -did -xPX -did -rqM -tJH -rqM -jxz -jLX -ckB -pvC -iKF -ixl -bkd -cXI -dnM -nqo -xTJ -fjP -fjP -qDT -sgY -pPa -wLU -aFN -mPB -aFN -aFN -wLU -sqP -sgY -dhb -aLN -gGW -qSw -orf -ucE -nLm -eJK -nLm -eJK -nLm -eJK -nLm -eJK -nLm -bMp -fjP -xXN -uOs -uar -fjP -hdc -sgY -cXD -hgr -fRP -vTn -cmF -qHI -hGh -ums -mBF -mBF -mBF -mBF -mBF -eDT -eDT -mBF -mBF -icR -mBF -mBF -rMF -rMF -rMF -tSL -wqy -kzT -xgX -xAc -qQR -kjJ -dwq -max -jcd -hwL -cUT -cUT -mLZ -jhr -jcd -max -ofi -ofi -ofi -max -max -max -max -tZh -tZh -yjT -bZK -qXn -wHF -wHF -mTr -nwA -wvt -wvt -seB -bZK -tSb -max -cpy -cpy -max -max -max -max -max -max -peZ -dOs -mjn -bWC -sow -jfL -jfL -cpy -bMX -"} -(63,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -vlm -vlm -vlm -vlm -cNV -vbZ -qUK -qUK -vlm -tvc -eID -saC -saC -saC -fmT -iSp -qUK -qUK -vlm -tiQ -jfo -fWC -cON -fWC -fWC -ckt -hDy -hDy -fbl -aze -jiY -saC -saC -saC -vhp -xAg -eai -ggm -bzC -iAv -jUY -qMs -qMs -oEb -iAv -iAv -iAv -xzn -xzn -wqo -wqo -saC -saC -tjR -tjR -mTN -dLP -oeX -tfP -tfP -tfP -tfP -tfP -tfP -tfP -yim -tfP -uSY -ien -clY -clY -edu -xtb -xPA -hLo -hLo -hLo -aiw -eDw -nxU -sNZ -lDW -xtb -nnt -mWx -xtb -nnt -mWx -xtb -lDW -sNZ -wmk -xtb -oBS -fjr -fan -cuM -dUp -qjC -tCs -mbH -dnM -sPk -aWl -xNk -vra -bFn -xrH -xrH -cDH -xrH -xrH -mgr -wLw -ujS -sPk -qDR -dnM -sPk -ujS -qYO -aVl -oFr -lOi -xrH -nEX -amP -lOi -qEx -sPk -dnM -wDZ -eAT -mum -rGE -bdQ -sgY -nUp -mpN -vXc -grq -grq -kqJ -mAR -vKt -jrd -mBF -ums -eju -mBF -rMF -upK -mBF -rMF -rMF -mBF -rMF -rMF -rMF -tSL -tSL -avH -kzT -qzT -xAc -avH -kjJ -dwq -max -xKk -jcd -jcd -jcd -jcd -jcd -xKk -max -ofi -ofi -ofi -tZh -max -max -max -ofi -ofi -yjT -bZK -qlR -wvt -wHF -wHF -qJT -wvt -wHF -jja -bZK -tSb -max -max -cpy -max -max -ofi -max -max -max -peZ -jfL -sNL -oSn -sow -gso -jfL -cpy -bMX -"} -(64,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -vlm -vlm -vlm -kwJ -vlm -cNV -vbZ -wLM -wLM -lYa -aJa -saC -saC -saC -saC -saC -raR -lYa -lYa -hDy -hDy -hDy -hDy -iky -hdy -hDy -hDy -hDy -fbl -fbl -aze -ipB -vhp -saC -vhp -vhp -mST -evo -fbl -bzC -iAv -iAv -udF -udF -eFv -iAv -iAv -mWw -nmK -wqo -wqo -xzn -xzn -fLS -xzn -hHd -mTN -dLP -ylC -qyG -qyG -qyG -qyG -qyG -qyG -qyG -eeY -tfP -ien -ien -ien -clY -pWQ -gWY -xPA -hLo -hLo -hLo -aiw -aDG -nxU -sNZ -hvs -xtb -xtb -xtb -xtb -xtb -xtb -xtb -kkI -owU -sNZ -xtb -oBS -fjr -fan -xCt -bDv -jFc -nhs -qcy -tUM -nBv -vxM -quA -bkl -aFN -txY -pbp -txY -pbp -aFN -mst -quA -eJD -oPu -trj -uOs -uOs -gaM -quA -iYE -ruS -txY -pbp -pbp -sMV -ruS -quA -uOs -fjP -hxt -tUM -eAm -rGE -eqo -sgY -eBN -tVv -qgj -tvq -ftl -yiM -rwB -gBe -hBQ -vjP -rMF -rMF -nZc -rMF -rMF -nZc -rMF -rMF -bPa -rMF -tSL -tSL -tSL -bgp -aCt -wnM -kzT -gIW -mQr -kjJ -dwq -ofi -max -max -max -max -max -max -max -max -max -ofi -ofi -ofi -max -max -ofi -ofi -ofi -yjT -bZK -bsR -wvt -wvt -xuF -xuF -wvt -wvt -hQk -bZK -juY -mse -mse -mse -mse -aYO -ofi -ofi -max -dOM -fnA -jfL -jfL -kuc -qCw -jfL -jfL -cpy -bMX -"} -(65,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -vlm -vlm -ldK -dOD -vlm -cNV -vbZ -qUK -qUK -vlm -tvc -saC -saC -saC -saC -saC -qES -diG -dOD -fbl -auj -pAx -fbl -eai -fbl -fbl -fbl -uyw -fbl -vSd -xHX -ooA -vhp -vhp -kfy -vhp -vhp -gOO -pKI -bzC -iAv -iAv -xZk -xZk -rSw -iAv -iAv -saC -eYA -akp -hHd -gaH -fmz -xzn -xzn -hHd -mTN -dLP -yim -tfP -tfP -cpy -tfP -tfP -tfP -tfP -yim -pjJ -pjJ -ien -esw -clY -pWQ -xtb -qBc -jZo -rbb -jZo -rwK -hzk -sbO -sNZ -cyc -xtb -tPA -mSE -xtb -tPA -mSE -xtb -yjN -jxa -owU -xtb -oBS -fjr -fan -nLm -fgl -brE -gdt -uOs -grw -uOs -iHR -sgY -sWI -jnk -jnk -mPR -nbx -nbx -aFN -sqP -sgY -cJe -bxm -trj -gVg -dQx -ksL -sgY -pPa -ruS -aFN -mQq -aFN -sMV -odn -sgY -hdc -fjP -tUM -uOs -vzp -eqo -ldD -nLm -jUo -ofy -sPs -grq -grq -yiM -xly -wYa -hBQ -rMF -tSL -qKr -tSL -tSL -rMF -tSL -tSL -tSL -tSL -tSL -tSL -pNx -qwz -xAc -wnM -wnM -kzT -gIW -pHE -tSL -dwq -tZh -ofi -max -max -max -max -max -max -max -max -tZh -tZh -ofi -max -ofi -ofi -ofi -ofi -yjT -bZK -bZK -pyt -wvt -wHF -wHF -wHF -eNC -bZK -bZK -gol -max -max -ofi -ofi -erA -ofi -ofi -ofi -peZ -jfL -jfL -jfL -akc -qCw -sow -jfL -cpy -bMX -"} -(66,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tiQ -vlm -vlm -ldK -foQ -fXK -vlm -cNV -vbZ -qUK -qUK -vlm -tvc -fDR -saC -saC -saC -saC -pSF -fDR -fXK -fbl -tLu -vHO -cbt -jjn -pzA -pzA -eZB -vCu -bju -gIi -dSP -sME -dSP -dSP -dSP -krw -egG -qul -saC -bzC -iAv -aNy -pln -pln -rbS -mZh -iAv -saC -saC -saC -hHd -gaH -gaH -xzn -hHd -xzn -mXC -dLP -yim -tfP -cpy -cpy -cpy -tfP -tfP -tfP -yim -pjJ -pjJ -ien -dWc -clY -pWQ -gWY -xPA -hLo -hLo -hLo -aiw -eDw -rhN -rhN -cyc -xtb -tPA -mSE -xtb -tPA -aPF -xtb -xtb -gWY -xtb -xtb -oBS -fjr -fan -nLm -nLm -nUE -vvE -uOs -fjP -fjP -kBe -nLm -mUB -ppZ -ppZ -nwj -ome -ppZ -pMM -cib -nLm -ond -fHq -tii -eJD -fHq -ucE -nLm -cFe -oUA -xrk -nwj -cib -sWI -erp -nLm -ubQ -lsD -fjP -fjP -mdn -bdQ -nLm -nLm -irz -vXc -jrL -qig -yiM -yiM -twT -wPc -rMF -tSL -tSL -eak -tSL -tSL -pEM -tSL -mFI -yix -ppC -tSL -uwt -xAc -uwt -wnM -wnM -tSL -phn -kzT -xAc -tPg -dwq -ofi -ofi -tZh -max -max -max -max -max -dOM -kfK -kfK -kfK -kfK -kfK -kfK -mBX -ofi -ofi -hov -sOB -bZK -bZK -oaE -gUx -vDl -kJK -anG -bZK -vVd -lUV -max -dOM -kfK -kfK -kgN -kfK -kfK -kfK -fnA -cpy -cpy -jfL -sow -qCw -rJO -jfL -cpy -bMX -"} -(67,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -orV -vlm -ldK -atQ -qNi -lKm -vlm -cNV -vbZ -aPx -qUK -vlm -tvc -fDR -saC -saC -saC -saC -pBy -lpa -uOC -lfY -rzj -pKY -dSP -hlf -tso -tso -pMH -luG -vhp -vhp -vhp -ocm -vhp -vhp -vhp -vhp -xlU -saC -saC -bzC -iAv -fey -sXk -nUa -vIz -mZh -iAv -saC -saC -jPC -xzn -fmz -fmz -xzn -xzn -vZP -mXC -dLP -yim -tfP -cpy -cpy -cpy -cpy -tfP -tfP -lCH -pjJ -ien -ien -ien -clY -pWQ -xtb -xPA -hLo -hLo -hLo -aiw -lgN -nxU -rhN -cyc -xtb -swG -aPF -xtb -swG -xOc -xtb -xAO -xAO -xAO -xtb -oBS -ugV -pQj -yjm -nLm -nLm -wIc -brE -rGE -kkW -hml -nLm -nwj -uMw -uMw -nwj -uMw -uMw -nwj -nwj -nLm -nLm -nLm -uYk -ulE -nLm -nLm -nLm -nwj -uMw -uMw -nwj -uMw -uMw -nwj -nLm -fir -dAk -cve -brE -cnh -nLm -nLm -rMF -wHJ -yiM -yiM -sPw -yiM -vXc -vXc -uWW -tSL -tSL -vJU -sMR -sMR -sFo -gIW -hWp -xAc -gIW -coU -kjJ -qQR -xAc -qQR -wnM -kzT -yfH -xDl -xAc -vBJ -tSL -fnA -kfK -kfK -mBX -max -max -max -max -dOM -fnA -wIr -wIr -jju -awu -wIr -wIr -kmq -mBX -ofi -ofi -hov -sOB -bZK -wLR -wLR -wLR -wLR -bZK -vVd -nGB -max -dOM -kmq -wIr -jju -lcR -jju -jju -wIr -cpy -cpy -cpy -jfL -sow -gcR -nqG -jfL -cpy -bMX -"} -(68,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -ldK -atQ -fDR -fXK -vlm -vlm -cNV -vbZ -aPx -qUK -vlm -tvc -fDR -saC -saC -saC -saC -pSF -iLA -fXK -fbl -tLu -aWf -jwP -mHb -jwP -jwP -jwP -ubr -bAI -apU -vhp -ooA -vhp -vhp -vhp -xlU -saC -saC -saC -bzC -iAv -lRE -xss -lNi -tuC -nOF -iAv -saC -lqd -xzn -xzn -xzn -hHd -hHd -xzn -xzn -mXC -dLP -yim -tfP -cpy -cpy -cpy -cpy -tfP -pjJ -lCH -pjJ -pjJ -ien -nBs -clY -pWQ -xtb -xPA -wiz -rwx -tyy -aiw -lgN -nxU -sNZ -hyT -xtb -nmO -nmO -xtb -nmO -nmO -xtb -xAO -xAO -xAO -gWY -bKs -ugV -hNR -lfv -yjm -nLm -nLm -fgl -wAt -qsO -nLm -nLm -ahP -hUx -hUx -hUx -hUx -qAO -oTn -xTp -iMf -pQE -dNG -tIR -oHx -iDF -pQE -muC -rMF -eKl -eKl -eKl -eKl -eKl -rMF -nLm -nLm -bdQ -ddf -uiA -nLm -nLm -rMF -wHJ -vXc -bMN -yiM -yiM -pWR -rXb -hFa -oXp -tSL -gpv -uxI -gIW -wrj -gIW -xAc -xAc -rtk -wrj -ozJ -kjJ -qQR -xAc -qQR -kzT -xSm -yfH -xDp -xAc -ocZ -tSL -fnA -fnA -tSL -kmq -mBX -max -max -dOM -kmq -wIr -wIr -sZv -gHg -gHg -jpr -wIr -wIr -dbP -qSv -kfK -kfK -rMU -umQ -umQ -umQ -umQ -umQ -xVQ -rUm -woM -lRa -dbP -wIr -wIr -flr -jTV -gHg -xxB -wIr -wIr -cpy -jfL -jfL -sow -sow -nqG -jfL -cpy -bMX -"} -(69,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -xvK -fDR -fDR -fXK -vlm -cNV -cNV -cNV -jKp -vlm -vlm -xvK -saC -saC -saC -saC -oEZ -aFz -nSP -lKm -fbl -tLu -pAx -fbl -eai -fbl -fbl -saC -saC -saC -oPk -xkG -ooA -vhp -vhp -vhp -saC -saC -saC -saC -bzC -iAv -lRE -gUb -lNi -tuC -ckS -iAv -saC -saC -hHd -xzn -hHd -hHd -xzn -xzn -xzn -mXC -dLP -yim -tfP -cpy -cpy -cpy -cpy -vjW -pjJ -lCH -pjJ -pjJ -ien -hmM -clY -pWQ -xtb -xPA -piE -hLo -tLw -aiw -lgN -nxU -rhN -owU -xtb -nXU -aFy -xtb -szN -gxJ -xtb -xAO -xAO -xAO -gWY -oBS -ugV -hNR -ugV -ekZ -yjm -nLm -cuM -xCt -cuM -nLm -ahP -bcK -fjr -xfD -fjr -fjr -bPH -dox -tGl -tOi -hGO -ucl -uPy -qGK -iDF -hGO -muC -eBN -vXc -vXc -mqC -pwz -dFg -lVB -rMF -nLm -sgY -sgY -sgY -nLm -rMF -wHJ -vXc -vXc -upz -yiM -yiM -wsY -vXc -hBQ -tSL -tSL -pKc -wnM -qEf -eAX -suF -wnM -wnM -tuJ -qVE -lsx -kjJ -qQR -gIW -qQR -kzT -rXH -yfH -nBY -sqz -vnW -tSL -tSL -tSL -tSL -tSL -fnA -kfK -kfK -fnA -wIr -wIr -mlb -gHg -fTP -qzQ -gHg -cgO -wIr -wIr -sSK -uXq -uXq -uXq -uXq -uXq -uXq -uXq -uXq -uXq -uXq -uXq -xwg -wIr -wIr -bBT -gHg -oqp -qzQ -gHg -bBT -wIr -wIr -jfL -cWt -sow -sow -jfL -jfL -cpy -bMX -"} -(70,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -fXK -vlm -vlm -wLM -vlm -ldK -diG -diG -atQ -saC -saC -saC -saC -uFR -lYa -lYa -lYa -hDy -hDy -hDy -hDy -iky -hdy -hDy -hDy -hDy -saC -saC -aze -ooA -vhp -vhp -saC -saC -saC -saC -saC -bzC -iAv -pSw -wJu -lNi -tuC -pln -iAv -saC -hHd -nsv -jxI -jxI -jxI -jxI -jxI -jxI -ucn -dCw -rOf -cpy -cpy -cpy -cpy -cpy -cpy -pjJ -lCH -pjJ -ien -ien -ien -sjY -pWQ -gWY -qBe -sKz -hLo -kmE -rwR -tVo -xUt -cLE -sAr -xha -sAr -wBk -pki -lDW -uUb -xtb -xAO -xAO -xAO -xtb -oBS -ugV -hNR -ugV -ugV -tLO -uXy -uXy -hUx -bdA -hUx -bcK -ugV -ugV -kGX -fjr -fjr -rZc -dox -tGl -tOi -hGO -iDF -xeg -uMO -ucl -hGO -muC -eBN -laX -dFH -vXc -vXc -vXc -vXc -lVB -eKl -eKl -eKl -eKl -eKl -wHJ -vXc -vXc -vXc -upz -vXc -yiM -wsY -yiM -hBQ -tSL -tSL -agw -wnM -qEf -hjW -dbG -eKL -wnM -fMN -vrN -lsx -kjJ -avH -xAc -avH -kzT -pCP -yfH -xDl -lJN -fnv -tSL -kEc -tvf -qQR -tSL -wIr -wIr -eSZ -wIr -wIr -rDT -gHg -fTP -oLa -oLa -qzQ -gHg -nmk -wIr -wIr -wIr -eSZ -eSZ -eSZ -eSZ -wIr -wIr -eSZ -eSZ -eSZ -eSZ -wIr -wIr -bBT -hBK -fTP -xgH -oLa -qzQ -mrH -bBT -wIr -wIr -diz -gcR -sow -jfL -cpy -cpy -bMX -"} -(71,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -saK -dOD -vlm -wLM -vlm -tvc -fDR -fDR -saC -saC -saC -saC -fDR -lrS -vlm -qUK -qUK -xEO -tiQ -svi -fWC -cON -fWC -fWC -nqi -hDy -hDy -saC -wAs -fXI -luG -saC -saC -saC -saC -saC -saC -bzC -iAv -mYj -gUb -lNi -tuC -pln -iAv -lqd -xzn -sQN -fmz -fmz -hGk -hHd -xzn -xzn -mTN -dLP -tfP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -lCH -pjJ -pjJ -ien -fkD -clY -pWQ -xtb -rmt -bBt -rcP -qyS -rmt -eDw -rhN -sNZ -lDW -gWY -lDW -rhN -fgb -sNZ -lDW -nAS -xAO -xAO -xAO -gWY -oBS -ugV -hNR -ugV -nDo -ugV -fjr -fjr -fjr -fjr -ugV -ugV -ugV -xQZ -ugV -ugV -fjr -rZc -dox -tGl -tOi -hGO -iDF -xeg -uMO -ucl -hGO -muC -eBN -rjn -bVu -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -vXc -upz -vXc -vXc -wsY -yiM -lVB -rMF -tSL -pvf -kzT -qEf -msn -wfl -eKL -kzT -hsh -oqj -dcu -tSL -kzD -xAc -gse -kzT -xDl -tSL -pJZ -drz -qdU -tSL -ozJ -noO -hde -eyz -wIr -tyw -qRd -xZU -wIr -lxQ -gHg -oLa -qQR -qQR -tkf -qzQ -gHg -wcM -wIr -tyw -qRd -iep -qRd -qRd -wIr -wIr -qRd -qRd -iep -qRd -xZU -wIr -hib -xrf -pOs -uNu -pKl -oLa -qzQ -mrH -uKl -wIr -eSC -wig -sow -jfL -cpy -cpy -bMX -"} -(72,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -qRI -dVt -tZt -lSr -cPr -bjp -lue -wxp -lue -dVt -lpa -jOk -saC -saC -saC -saC -fDR -lrS -vlm -qUK -qUK -xEO -tiQ -uEB -xhc -bvk -sJF -cGv -fWC -fWC -hDy -xpf -aze -ooA -vhp -saC -saC -saC -saC -saC -saC -bzC -iAv -aNy -gUb -lNi -tuC -lRE -iAv -hHd -xzn -sQN -fmz -gaH -fmz -ufA -hHd -xzn -mTN -dLP -tfP -cpy -cpy -cpy -cpy -cpy -vjW -pjJ -lCH -pjJ -pjJ -ien -bHA -clY -pWQ -gWY -ufP -ufP -jxa -jxa -jxa -lQN -sNZ -sNZ -pXL -gWY -lDW -rhN -rsa -sNZ -lDW -nAS -xAO -xAO -xAO -gWY -oBS -ugV -spe -hcX -vwi -vwi -gRS -vwi -vwi -vwi -vwi -vwi -vwi -vwi -vwi -pqX -nQx -rvx -fZy -hAg -tOi -hGO -xZo -xeg -qGK -ucl -hGO -muC -eBN -qbI -qlD -qpz -qpz -qpz -qpz -qpz -qpz -qpz -qbW -lrm -pnO -umf -umf -vXc -vXc -vXc -pEA -tpD -tBQ -yiM -yiM -hBQ -krL -xAc -wnM -kzT -hsh -nNz -eKL -qNl -kzT -wnM -gIW -qLB -gIW -wnM -wnM -wnM -xDp -kzT -kzT -kzT -kDY -xQe -xAc -gIW -gIW -gIW -brd -sSR -tkf -erP -brd -gHg -qzQ -oLa -qQR -qQR -tkf -fTP -fTP -ozH -brd -sSR -oLa -oLa -oLa -tkf -flD -xmQ -tkf -tkf -tkf -tkf -erP -brd -lmS -oqp -oLa -pKl -pKl -tkf -qzQ -mrH -pgA -wIr -job -tbf -xGP -jfL -cpy -cpy -bMX -"} -(73,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -xZC -tvc -fDR -fDR -fXK -hVS -vlm -wLM -vlm -sJh -nSP -kmX -wum -saC -saC -saC -fDR -lrS -vlm -qUK -qUK -vlm -tiQ -xce -wQl -gNo -nsK -nBK -cGv -fWC -gBR -fbl -aze -ooA -gUN -saC -saC -saC -saC -saC -saC -bzC -iAv -soh -gUb -lNi -azc -lRE -iAv -xzn -rBY -xAl -rBY -rBY -xzn -gBi -saC -hHd -mTN -dLP -pjJ -pjJ -pjJ -cpy -cpy -pjJ -pjJ -pjJ -lCH -pjJ -ien -ien -ien -uSo -pWQ -xtb -owU -lDW -wyj -lDW -owU -fnC -owU -ufP -pXL -gWY -owU -wmk -jLF -wmk -owU -xtb -xAO -xAO -xAO -xtb -oBS -nDo -ugV -hNR -sVh -qiO -qOq -duM -gva -xZv -xuo -gsa -rAD -iGW -vGd -ugV -spe -nQx -fjr -xfD -tOi -pQE -pQE -tIR -oHx -pQE -pQE -muC -eBN -vXc -vXc -vXc -vXc -vXc -yiM -yiM -yiM -trW -uFB -taH -vPO -lrm -pnO -umf -vXc -yiM -vXc -vXc -tDd -rwE -bXS -rIN -jnf -mhN -lUv -msj -hIP -uOJ -mCA -qYG -mhN -rDm -fox -jnf -rDm -rDm -mCA -msj -eNf -oXr -wav -rDm -xAF -jnf -msj -msj -rDm -mhN -lqD -rmF -pOs -rmF -lqD -gpt -iXM -uIk -qQR -qQR -eng -iXM -vUe -dey -lqD -gFO -fzp -fzp -pOs -pOs -rlx -rmF -fzp -fzp -pOs -pOs -gFO -lqD -qeY -huu -tkf -pKl -pKl -tkf -qzQ -gHg -sSR -wHW -kxG -mPO -wig -jfL -cpy -cpy -bMX -"} -(74,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -xZC -tvc -fDR -fDR -fXK -vlm -cNV -cNV -cNV -hVS -vlm -xZC -tvc -saC -saC -vlm -fDR -lrS -vlm -qUK -qUK -vlm -tiQ -nCH -fWC -sXW -djf -oIq -xeb -hQg -jHk -lfY -fra -fzx -qBY -vhp -saC -saC -saC -saC -saC -bzC -iAv -pln -vuj -lNi -azc -lRE -iAv -pbi -lZP -tVR -lZP -lZP -iAv -iAv -iAv -iAv -iAv -dLP -vjW -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -lCH -pjJ -pjJ -ien -hJZ -hJZ -pWQ -xtb -gWY -gWY -xtb -xtb -xtb -rhG -mhb -xtb -xtb -xtb -owU -wmk -jLF -wmk -owU -xtb -xtb -gWY -xtb -xtb -xam -fjr -ugV -hNR -nNq -jda -uhl -rWI -dMr -hcH -fay -xdC -rWI -ltU -sHC -pqk -ugV -jXQ -nQx -fjr -tOi -hGO -mbn -xeg -uMO -aAc -hGO -muC -eBN -vXc -vXc -vXc -vXc -yiM -yiM -yiM -yiM -cXq -hDI -taH -taH -taH -jom -vXc -yiM -yiM -yiM -yiM -vXc -vXc -wPc -rMF -tSL -deS -xAc -kzT -cPB -eNX -wnM -gIW -kLY -tSL -tSL -tSL -oUV -bgp -eyz -ozJ -jTz -ozJ -eyz -ozJ -eyz -tSL -afh -ozJ -ozJ -ckI -wIr -tyw -iep -xZU -wIr -erP -gHg -xgH -qQR -qQR -xgH -fTP -xOR -oYf -wIr -hyn -iep -iep -qRd -qRd -wIr -wIr -iep -qRd -qRd -qRd -mxE -wIr -pqG -klV -aft -pKl -ipx -tkf -fTP -gHg -qUd -wIr -eTK -wig -sow -jfL -cpy -cpy -bMX -"} -(75,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -xZC -tvc -fDR -fDR -fXK -vlm -vlm -cNV -xON -iCF -mWA -xZC -tvc -saC -saC -kwJ -vlm -lrS -vlm -qUK -qUK -vlm -tiQ -pJB -gYT -gNo -bJm -gWJ -fWC -fWC -hDy -sNd -aze -ooA -vhp -vhp -mTz -saC -saC -saC -saC -bzC -iAv -owN -gUb -qpN -azc -pln -iAv -ckS -pln -qSm -pln -pln -lyS -qKd -iAv -iAv -iAv -jEX -buf -buf -buf -buf -buf -buf -uKi -pjJ -lCH -vjW -pjJ -clY -hJZ -hJZ -xzM -sLC -hUx -ahP -gWY -drc -owU -cli -sNZ -lDW -eNg -xtb -agq -sNZ -jLF -yah -kmn -gWY -ahP -hUx -hUx -hUx -bcK -fjr -ugV -hNR -nNq -imo -jlf -dTr -rtN -jNm -jNm -xgb -jDT -ecn -ruX -pqk -ugV -ibS -jXQ -iKF -xvN -ibc -sqi -ocn -qGK -frS -lZo -muC -eBN -pgm -vXc -yiM -yiM -yiM -nfk -yiM -yiM -wjO -ttM -ttM -ttM -ttM -ekm -ckz -ckz -qBq -yiM -yiM -yiM -vXc -uWW -tSL -tSL -tSL -eak -eak -dZv -qND -eak -eak -tSL -tSL -tSL -tSL -tSL -tSL -lYk -mSD -tSL -aMc -rWj -xzE -uYH -tSL -qQR -tvf -qQR -tSL -wIr -wIr -eSZ -wIr -wIr -xHK -gHg -bpN -uDT -pOs -poD -gHg -aZx -wIr -wIr -wIr -eSZ -eSZ -eSZ -eSZ -wIr -wIr -eSZ -eSZ -eSZ -eSZ -wIr -wIr -bBT -gHg -bpN -uIk -oLa -fTP -gHg -iug -wIr -wIr -tbf -sow -qCw -jfL -cpy -cpy -bMX -"} -(76,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -xZC -tvc -fDR -fDR -saK -dOD -vlm -cNV -kiR -iCF -qUK -xZC -tvc -saC -kwJ -kwJ -vlm -lrS -vlm -qUK -mWA -saC -tiQ -yiE -fWC -wId -caK -fWC -ckt -hDy -hDy -hVq -uby -ooA -vhp -vhp -qfI -xlU -saC -saC -saC -bzC -iAv -pln -gUb -lNi -azc -pln -iAv -gPh -cNI -xKG -nUa -nUa -dkr -lRE -vDA -iAv -iAv -kdf -ciw -ciw -ciw -lPf -qqJ -jEX -dLP -pjJ -lCH -pjJ -pjJ -clY -clY -hJZ -hJZ -sLC -fjr -sGP -gWY -esP -jxz -uLR -rhN -gvT -mRG -xtb -cic -sNZ -fgb -yah -hgG -gWY -oBS -fjr -fjr -fjr -fjr -fjr -fjr -fUQ -gJC -qGX -xEz -naM -uAa -fto -uDF -mQo -jNm -oij -uJW -ugV -fjr -fjr -fjr -ibS -tOi -lSV -frS -iaY -bGT -frS -lSV -muC -eBN -tpD -qQi -qQi -qQi -qQi -sMa -yiM -yiM -aPt -trZ -trZ -trZ -trZ -trZ -trZ -trZ -hrc -yiM -yiM -yiM -vXc -uWW -tSL -tSL -yjz -mhN -lUv -eVk -ivr -kzT -xAc -iMJ -tSL -tSL -tSL -tSL -tSL -tSL -tSL -tSL -tSL -eak -eak -tSL -tSL -tSL -tSL -tSL -tSL -tOo -eML -eML -tOo -wIr -wIr -gJe -btd -spJ -fTP -bxR -ffe -wIr -wIr -dme -jvK -jvK -jvK -jvK -jvK -jvK -jvK -jvK -jvK -jvK -jvK -atZ -wIr -wIr -bBT -mrH -oqp -qzQ -gHg -bBT -wIr -wIr -vUN -sow -qCw -qCw -jfL -cpy -cpy -bMX -"} -(77,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSS -tvc -fDR -fDR -fDR -fXK -vlm -cNV -saC -qUK -qUK -xZC -tvc -lYa -kwJ -ezU -vlm -lrS -vlm -qUK -saC -saC -tiQ -xce -xce -iky -hdy -hDy -hDy -hDy -kPa -fbl -aze -ooA -cPb -vhp -icG -xlU -saC -saC -saC -bzC -iAv -diM -wzK -lNi -tuC -pln -kNB -lRE -xss -btO -fbF -dkr -ycL -dkr -lRE -iAv -iAv -dxy -pOc -pOc -qxA -aea -rvd -alx -dLP -vjW -lCH -pjJ -pjJ -clY -clY -clY -clY -sLC -fjr -sGP -gWY -cZE -wyj -fgb -rhN -vVD -oYg -xtb -hCx -owU -fnC -xFk -fdw -gWY -oBS -fjr -fjr -fjr -cpy -bKf -fjr -nKZ -gJC -xRH -rJt -bDO -xgb -fGy -jDT -jlf -jNm -oij -gVw -ugV -xfD -cpy -fjr -fjr -tOi -hGO -mhU -xeg -qGK -mhU -hGO -muC -eBN -yiM -yiM -yiM -yiM -yiM -sMa -yiM -vXc -dka -trZ -oBM -hQP -eMw -eWG -aPE -trZ -hrc -yiM -yiM -vXc -vXc -uWW -rMF -tSL -isV -doT -gIW -wXn -xAc -xAc -xAc -iMJ -tSL -tSL -gbB -rMF -tSL -rMF -rMF -tSL -rMF -rMF -rMF -rMF -tSL -tOo -tOo -tSL -dGD -sdl -mPr -hFX -vjh -bYV -wIr -wIr -qrK -dfJ -pJv -toJ -wIr -wIr -fur -gXW -eML -eML -eML -eML -eML -eML -eML -eML -eML -eML -eML -sOa -oZo -wIr -wIr -iIV -xzi -gHg -lZm -wIr -wIr -jnx -jnx -sow -qCw -jfL -jfL -cpy -cpy -bMX -"} -(78,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -fDR -fXK -vlm -saC -saC -qUK -qUK -jZY -dVt -bVb -lue -lue -lpa -ukw -vlm -qUK -saC -saC -tiQ -pJB -jnL -uWb -oGs -jQQ -dec -hDy -tug -vSd -xHX -ooA -jBy -uAm -xlU -saC -saC -saC -saC -uAm -iAv -iyU -xss -lNi -tuC -pln -kNB -pln -xss -igb -lNi -utv -lNi -xNX -mXR -iAv -iAv -ril -eEh -mvj -ril -iAv -iAv -alx -dLP -vjW -hdu -nCa -nCa -yhK -yhK -yhK -iSf -npc -nQx -sGP -xtb -xtb -xtb -rhG -mhb -xtb -xtb -xtb -xtb -xtb -rhG -mhb -xtb -xtb -oBS -fjr -fjr -cpy -cpy -cpy -xDz -bAn -sGP -qba -qbR -fCm -wuW -oEy -qoC -lfb -sRX -fLG -lwY -fjr -fjr -cpy -cpy -fjr -tOi -pQE -pQE -hsg -ijo -pQE -pQE -muC -eBN -yiM -yiM -iBY -sno -yiM -sMa -vXc -umf -dka -trZ -mOH -ftq -jzh -rYk -mMu -iax -hrc -yiM -yiM -vXc -vXc -qdz -rMF -tSL -tSL -xrK -opa -vvm -fxy -idZ -jEZ -tSL -tSL -rMF -eKl -eKl -eKl -eKl -eKl -eKl -eKl -eKl -eKl -eKl -gVP -eML -eML -eML -sdl -mPr -mPr -hFX -hFX -phw -pnM -wIr -wIr -lcR -awu -wIr -wIr -gmm -ksp -mPr -mPr -mPr -mPr -mPr -nax -nax -nax -nax -mPr -mPr -mPr -mPr -vjh -tOo -wIr -jju -qQz -aPU -jju -wIr -jfL -uqn -sow -sow -sow -jfL -cpy -cpy -cpy -bMX -"} -(79,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -fDR -fXK -saC -saC -saC -saC -qUK -vlm -tvc -sfb -fDR -fDR -fDR -fXK -vlm -saC -saC -saC -tiQ -pJB -gYT -gNo -oGs -hDa -dec -hDy -skJ -aze -vhp -ooA -uAm -uAm -klW -saC -saC -saC -saC -uAm -lLA -uzq -jJx -stO -hwU -ceU -rKc -tgU -kvk -avw -iHm -aPI -hsp -aPI -duC -xiL -jlx -eLU -dil -qhD -mjF -gzb -ril -tQS -gWI -buf -buf -buf -buf -sXR -sXR -hxZ -sjY -sLC -jDO -huY -hUx -hUx -unf -pbK -mOb -gtp -hUx -ahP -qDL -uyG -hhs -jgt -cyT -qDL -xam -fjr -cpy -cpy -cpy -cpy -cpy -dBQ -huY -fce -hUx -fce -fCd -vdG -hUx -hUx -mYH -vJK -ffH -fjr -cpy -cpy -cpy -fjr -tOi -hGO -fbn -uPy -uMO -xzd -hGO -muC -eBN -yiM -yiM -qCY -iqQ -yiM -puY -vXc -umf -dka -trZ -uBB -mMu -byG -mMu -jEV -trZ -hrc -yiM -vXc -vXc -vXc -wYa -lVB -gbB -tSL -tSL -hsE -tSL -tSL -eak -tSL -tSL -rMF -wHJ -yiM -yiM -vXc -vXc -vXc -umf -umf -umf -vXc -vXc -gVP -nax -nax -nax -mPr -mPr -mPr -mPr -hFX -hFX -xry -iCa -qRd -fIc -sSR -qRd -iCa -iqy -laU -mPr -tNc -gUj -gUj -tZF -iCb -nax -nax -nax -mPr -mPr -mPr -mPr -mPr -vjh -eML -eML -dyc -eML -tOo -jfL -jfL -wRr -sow -sow -sow -jfL -cpy -cpy -cpy -bMX -"} -(80,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -fDR -gBB -saC -saC -saC -saC -saC -saC -sJh -roe -nSP -nSP -nSP -lKm -tiQ -tiQ -tiQ -saC -tiQ -pJB -jnL -gNo -oGs -fWC -dec -hDy -xoY -squ -dZo -ooA -aIa -jUl -saC -saC -saC -saC -fMw -lko -lLA -pln -fJZ -wzd -pta -mZh -jUY -qSm -aao -stO -rID -hZJ -adZ -pln -fLT -eEh -bQb -myz -qMs -oEb -kEj -cDj -ril -gWI -gWI -oUq -oUq -nlF -nlF -oUq -oUq -oUq -oUq -oUq -jXQ -iKF -iKF -iKF -iKF -iKo -fjr -fjr -fjr -sGP -joj -cyT -uLw -vlX -cyT -joj -oBS -fjr -cpy -cpy -cpy -cpy -fjr -lRi -ugV -ugV -ugV -xyU -tSF -ugV -ugV -pqk -tIQ -ugV -ugV -gUT -cpy -cpy -cpy -fjr -tOi -hGO -iDF -xeg -qGK -iDF -hGO -muC -eBN -yiM -yiM -qCY -uie -yiM -yiM -yiM -vXc -dka -trZ -dQc -rTe -jzh -rTe -wze -aht -hrc -yiM -vXc -vXc -vXc -wYa -umf -lVB -rMF -tSL -rMF -tSL -tSL -rMF -tSL -rMF -wHJ -yiM -yiM -yiM -yiM -vXc -vXc -vXc -umf -vXc -vXc -yiM -gVP -nax -nax -mPr -mPr -mPr -mPr -mPr -mPr -hFX -xry -iCa -qRd -xgH -tkf -qRd -iCa -iqy -laU -mPr -tNc -nax -nax -nax -nax -nax -nax -nax -mPr -mPr -mPr -mPr -mPr -mPr -mPr -kOa -jyM -nax -eaW -ouj -jfL -wbz -sow -sow -sow -jfL -cpy -cpy -cpy -bMX -"} -(81,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -raR -aJa -sfb -sfb -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -qUK -qUK -qUK -qUK -saC -saC -saC -saC -tiQ -xce -sjC -gNo -fha -qbU -xce -hDy -fbl -hvx -iPo -jql -vhp -pSR -saC -saC -saC -xAg -gQN -uAm -lLA -ntL -pln -dEQ -xyh -iAv -iAv -bds -uNz -ckS -bqV -bZw -lRE -mXR -iAv -iAv -iAv -ril -eEh -jID -ril -iAv -iAv -iAv -oUq -oUq -bME -xzG -gTr -pAE -oUq -oUq -oUq -fjr -rxI -fjr -fjr -fjr -ugV -ugV -fjr -fjr -fjr -sGP -joj -cyT -uNt -vlX -cyT -joj -oBS -fjr -cpy -cpy -cpy -fjr -fjr -hNR -ugV -bgh -eHC -lDd -jch -sSs -eHC -gva -uPT -fjr -fjr -fjr -prs -cpy -fjr -fjr -jPS -hGO -iIf -xeg -qGK -iDF -hGO -muC -eBN -yiM -yiM -qCY -uie -yiM -yiM -yiM -yiM -dka -trZ -bqm -nVS -uyj -mMu -dOe -aht -hrc -yiM -yiM -vXc -vXc -wYa -vXc -umf -lVB -nZc -eKl -eKl -eKl -eKl -eKl -wHJ -yiM -yiM -yiM -yiM -yiM -yiM -vXc -vXc -vXc -yiM -yiM -yiM -gVP -nax -nax -mPr -mPr -mPr -mPr -mPr -mPr -mPr -xry -iCa -qRd -xgH -tkf -qRd -iCa -iqy -laU -mPr -mPr -iCb -nax -nax -nax -nax -nax -mPr -mPr -mPr -siX -gUj -gUj -qNr -mPr -tKB -nax -nax -eaW -gmu -xhG -hVH -sow -qCw -qCw -jfL -cpy -cpy -cpy -bMX -"} -(82,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -eID -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -fDR -saC -saC -saC -saC -saC -saC -tiQ -mOC -fWC -gNo -oGs -qzG -uqD -hDy -fbl -hvx -elw -jOM -vhp -vhp -saC -saC -wDC -kpD -imO -uAm -uAm -lLA -lLA -iAv -iAv -iAv -iAv -eEh -pRd -kwf -iAv -iAv -pGJ -iAv -iAv -iAv -iAv -cPm -xZk -pef -wja -wja -jRn -wja -elr -xyK -xyK -kXY -kXY -xzG -pAE -oUq -oUq -fjr -fjr -fjr -fjr -ugV -ugV -ugV -ugV -fjr -rxI -sGP -joj -bgK -uNt -vlX -bgK -joj -oBS -fjr -fjr -cpy -fjr -hxy -iKF -kdo -bgh -yjp -sjy -sjy -sjy -sjy -sjy -sjy -evQ -vGd -fjr -fjr -fjr -fjr -fjr -nVN -aNR -hGO -iDF -xeg -qGK -ucl -hGO -muC -eBN -yiM -yiM -bYS -xLY -yiM -yiM -yiM -yiM -dka -trZ -vDZ -rYk -sfT -rYk -aKl -aht -hrc -yiM -yiM -yiM -vXc -wYa -vXc -vXc -vXc -nZc -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -yiM -vXc -vXc -vXc -umf -vXc -vXc -yiM -yiM -gVP -nax -mPr -mPr -mPr -mPr -mPr -mPr -mPr -mPr -xry -iCa -iep -qEk -tkf -qRd -iCa -iqy -laU -mPr -nax -bjX -nXX -nXX -nXX -nXX -wko -mPr -mPr -mPr -mPr -mPr -mPr -mPr -nax -pCv -nax -mPr -eaW -gmu -jfL -nCe -sow -qCw -jfL -jfL -cpy -cpy -cpy -bMX -"} -(83,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -fDR -qNi -lKm -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -nCH -gYT -gNo -nBK -vez -uqD -hDy -fbl -aze -gZX -oCT -dwa -vhp -vhp -saC -vvU -hOD -fbl -hao -uAm -uAm -nzR -bzC -bzC -bzC -iAv -eEh -eEh -iAv -iAv -lLA -lLA -xUq -xUq -iAv -upT -wja -nMl -wrc -mjF -mGb -wVX -pGC -iyr -oOo -kXY -nFc -rqE -kXY -lmL -oUq -oUq -oUq -fjr -fjr -fjr -ugV -ugV -ugV -ugV -ugV -rxI -sGP -qDL -bgK -ndB -wni -cyT -qDL -ahP -vGd -fjr -fjr -fjr -jDO -fjr -ugV -sGP -sjy -sjy -npq -che -eMp -tUq -sjy -sjy -ahP -eHC -eHC -eHC -eHC -kSq -usq -geZ -pQE -ucl -apL -lzj -ucl -pQE -txp -vSN -ibL -ibL -ibL -ibL -ibL -rzB -yiM -yiM -dka -trZ -okL -sWo -rTe -sWo -rTe -trZ -hrc -yiM -yiM -vXc -vXc -tDd -rXb -rXb -rXb -fCx -rXb -rwE -rwE -rwE -rwE -rwE -rwE -rwE -wLh -vXc -vXc -umf -umf -umf -umf -vXc -vXc -yiM -gVP -nax -nax -mPr -mPr -hFX -hFX -hFX -mPr -mPr -xry -wIr -wIr -kBr -erP -wIr -wIr -iqy -lXF -mPr -bjX -yhj -ylo -ylo -ylo -ylo -beh -wko -mPr -mPr -mPr -mPr -mPr -nax -nax -pCv -nax -mPr -eaW -eDq -jfL -dsU -sow -sow -jfL -cpy -cpy -cpy -cpy -bMX -"} -(84,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -fDR -bHV -lKm -vlm -vlm -cNV -saC -saC -saC -saC -saC -saC -qUK -qUK -qUK -saC -saC -saC -saC -saC -tiQ -nCH -fWC -uXN -sEx -gWJ -nCH -hDy -saC -aze -vhp -bEe -vhp -vhp -vhp -luG -hZC -wmy -tJA -fbl -sfy -saC -saC -saC -saC -bzC -bzC -iAv -iAv -iAv -gYc -lLA -lLA -lLA -xUq -juH -wja -rHz -wja -wja -sFK -cih -xKi -pHy -nlF -faj -kXY -nFc -dwI -kXY -xzG -oUq -oUq -rxI -fjr -fjr -fjr -ugV -ugV -bgh -eHC -eHC -eHC -yjp -beB -beB -uGE -sBn -beB -wrC -wrC -xXR -eHC -eHC -vGd -dBQ -fjr -bgh -uuy -sjy -hPj -rMa -jQk -cXF -gZZ -vAT -sjy -sjy -sjy -sjy -sjy -sjy -sjy -sjy -sjy -kqb -kqb -brK -oOn -kqb -kqb -lVp -lVp -smG -hPC -cVi -lVp -lVp -aHH -rzB -yiM -dka -trZ -aht -trZ -aht -trZ -aht -trZ -hrc -vXc -vXc -vXc -omZ -vfQ -vfQ -vfQ -vfQ -nZc -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -ciV -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -gVP -gQG -gQG -gQG -gQG -gQG -lIq -hFX -hFX -mPr -xry -wIr -wIr -dvg -erP -wIr -wIr -iqy -laU -mPr -aPe -ylo -ylo -ooB -pdI -ylo -ylo -hdG -mPr -mPr -pOU -gQG -gQG -gQG -gQG -pih -gQG -gQG -tOo -jfL -jfL -cjf -sow -bUq -jfL -cpy -cpy -cpy -cpy -bMX -"} -(85,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -tvc -qNi -lKm -vlm -vlm -cNV -cNV -saC -saC -saC -saC -wLp -hmW -hmW -hmW -hmW -hmW -saC -saC -tiQ -saC -tiQ -tiQ -aYE -aYC -fWC -hIS -elo -hDy -saC -saC -vhp -apj -dSP -dSP -dSP -gDX -dSP -dSP -bqz -bju -lvH -siS -tof -saC -saC -saC -saC -saC -saC -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -oUq -vNR -nMX -rmA -nMX -nMX -vNA -oUq -oUq -rxI -rxI -fjr -ugV -ugV -ugV -sGP -beB -beB -beB -beB -beB -vrC -sYB -pWD -lZj -wrC -wrC -wrC -wrC -wrC -oBS -jDO -fjr -sGP -sjy -sjy -pxi -cPL -urM -xxs -uDb -aeE -sjy -sjy -kJJ -qwT -oSE -dnF -eKz -eKz -sjy -bTJ -amQ -lkj -lxL -xCa -kew -lVp -lVp -knP -dCh -dCh -hpm -lVp -lVp -xDV -vXc -eCY -lMn -lMn -lMn -lMn -lMn -lMn -lMn -pKR -vXc -vXc -omZ -rMF -jmG -jmG -rMF -rMF -jmG -jmG -rMF -rMF -jmG -jmG -rMF -rMF -jmG -hFh -asx -asx -jmG -rMF -rMF -jmG -jmG -rMF -rMF -jmG -jmG -tOo -tOo -jmG -jmG -pqR -lIq -hFX -mPr -xry -iCa -qRd -xgH -tkf -iep -iCa -iqy -laU -mPr -uXp -ylo -xET -yfu -nXO -pdI -ylo -hdG -mPr -pOU -tOo -jas -jas -jas -gXO -qLb -gXO -jas -jas -jas -jas -dNY -kfL -erd -jfL -cpy -cpy -cpy -cpy -bMX -"} -(86,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -sJh -lKm -vlm -cNV -cNV -cNV -ybZ -ybZ -saC -saC -wLp -sak -sak -sak -sak -sak -hcb -sak -sak -sak -saC -saC -tiQ -lBp -lBp -lBp -tiQ -mOC -tiQ -saC -saC -saC -vhp -vhp -icG -fAw -luG -vhp -vhp -vhp -vhp -vhp -vhp -ooA -rmx -saC -saC -saC -saC -saC -saC -saC -saC -saC -oUq -oUq -oUq -oUq -oUq -oUq -oUq -oUq -oUq -oUq -oUq -oUq -exO -vUa -hTp -lxT -lxT -xot -oUq -oUq -oUq -ugV -ugV -ugV -ugV -ugV -sGP -beB -hZf -wWJ -hWu -tyH -xQw -rin -nBR -wMU -wrC -ajg -bat -oRq -wrC -oBS -jDO -bgh -qxe -sjy -sjy -sjy -iEe -sjy -tpa -tpa -sjy -sjy -aIf -kRb -kBk -iJu -uDs -jUg -aeE -sjy -kew -oud -dbQ -lxL -nTD -wUt -lVp -wVA -dSw -oXa -awj -xZT -xmS -lVp -xDV -vXc -vXc -yiM -yiM -yiM -yiM -yiM -yiM -vXc -vXc -vXc -omZ -rMF -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -uKS -ild -ild -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -laU -hFX -mPr -xry -iCa -qRd -xgH -tkf -qRd -iCa -iqy -iBA -bwF -aPe -jAN -yfu -yfu -yfu -agy -ylo -hdG -jAd -eaW -jas -jas -dWF -jas -xQF -vjr -ghM -jas -pji -oPO -jas -jas -fll -jas -jas -cpy -cpy -cpy -cpy -bMX -"} -(87,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -xZC -vlm -vlm -cNV -cNV -cNV -cNV -qsH -acM -rqZ -rqZ -rqZ -iZX -iZX -iZX -iZX -iZX -iZX -iZX -iZX -saC -saC -saC -tiQ -lqH -inH -gid -tiQ -tiQ -tiQ -saC -saC -saC -saC -vhp -vhp -vhp -luG -vhp -vhp -vhp -vhp -vhp -vhp -ooA -icG -tJB -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -oUq -kgv -cDX -csJ -kgv -ucC -stX -oUq -oUq -ozg -bJN -jbn -kXY -kXY -fDw -oUq -oUq -ugV -ugV -ugV -ugV -ugV -ugV -sGP -beB -sLa -wWJ -wRg -wRg -wRg -dqL -nBR -nyH -uQt -tMY -aml -riT -wrC -oBS -jDO -sGP -sjy -sjy -rpf -lzS -aaK -vLq -aqt -iaU -iaU -sjy -sjy -rlc -ggd -ldj -qmv -fiZ -rWN -sjy -tbC -xYx -oLd -wob -nTD -fDK -lVp -wVA -vAn -yca -yca -wSt -jan -wDo -xDV -vXc -gsP -qtN -qtN -qtN -vKO -yiM -yiM -yiM -vXc -omZ -rMF -jmG -jmG -unS -uKE -jwM -jwM -sOR -oVk -gwP -tnM -wHU -woq -qsC -ggC -jmG -uKS -ild -ild -jmG -jdj -xzP -unS -jwM -hDQ -jPH -qvN -gwP -ujR -mXH -dUW -dUW -jmG -laU -mPr -mPr -xry -iCa -iep -qEk -oLa -qRd -iCa -iqy -laU -qbG -aPe -jAN -yfu -yfu -yfu -rlR -ylo -hdG -mPr -mmF -jas -rKq -vpe -aAI -gDu -wwc -gDu -aAI -qSs -eso -cxP -jas -nQu -tms -jas -cpy -cpy -cpy -cpy -bMX -"} -(88,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -cCX -qUK -qUK -cNV -cNV -cNV -cNV -sak -uaF -hmW -hmW -ojM -khU -khU -khU -hmW -khU -khU -hmW -saC -saC -saC -saC -tiQ -smv -smv -smv -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -vhp -vhp -saC -vhp -vhp -vhp -vhp -vhp -vhp -ooA -vhp -rmx -saC -saC -saC -saC -saC -saC -icb -saC -saC -saC -nCh -lei -vrk -quf -fTj -jms -kUx -aPT -rqD -uyR -xzG -har -jbn -awI -kXY -xyK -xyK -nlF -eHC -eHC -eHC -eHC -eHC -eHC -ahP -beB -sLU -lyv -vcy -efw -ija -dqL -wRg -nyH -wrC -mxP -nLk -doL -wrC -jBU -cyK -nKm -sjy -xZM -vcL -qGC -azl -qGC -mqH -mqH -vcL -sjy -sjy -mim -sjy -vXr -sjy -mim -sjy -sjy -fDK -xYx -oLd -wob -nZd -bTJ -lVp -opq -jfO -yca -owg -jfO -trl -wfT -xDV -vXc -uWD -xkO -xkO -xkO -weQ -yiM -aOi -yiM -vXc -hBQ -jmG -jmG -ubJ -uok -uKS -uXO -ild -jwM -ild -eHF -iXy -qQr -tdz -sLn -mgB -jmG -vVS -ild -ild -jmG -jdj -aFM -vVS -afI -oqK -vwf -qvN -eHF -ujR -mXH -jwM -nBP -jmG -laU -mPr -mPr -xry -iCa -qRd -qEk -oLa -qRd -iCa -iqy -maQ -nax -glO -vOb -xET -yfu -yfu -hoM -ylo -nJr -mPr -eaW -jas -eet -vpe -aAI -gDu -wwc -gDu -aAI -cLy -vpe -msm -jas -nQu -bWv -jas -cpy -cpy -cpy -cpy -bMX -"} -(89,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -kRr -kRr -dOa -eCo -bLe -dOa -iEJ -uaF -khU -khU -ojM -khU -khU -khU -hmW -khU -khU -hmW -saC -saC -saC -saC -tiQ -efI -cFO -sCJ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -apU -fAw -vhp -vhp -vhp -vhp -ooA -vhp -vhp -bnd -saC -saC -saC -saC -fXR -kwg -kwg -saC -kwg -tAW -aYd -efG -kwg -kwg -kwg -tAW -kXY -rqD -arD -kwg -iZS -cqx -qDC -qCm -kXY -xyK -oUq -beB -sKn -sKn -sKn -sKn -beB -beB -beB -sMY -pyS -qVq -qVq -nBR -fdq -wRg -wMU -wrC -wrC -wrC -iqF -wrC -kCG -mJS -dQO -sjy -bUv -jpc -sAU -den -xDP -awK -mqH -vcL -sjy -hid -fiZ -gGj -wnd -kGt -xxs -dNR -sjy -vtR -asF -oLd -wTr -tfi -qRi -lVp -tDy -wSt -xKy -yca -gXT -sUT -beS -xDV -vXc -uWD -xkO -icY -snT -qJN -vXc -vHN -yiM -vXc -hBQ -jmG -ubJ -ubJ -ubJ -kyB -ldC -ldC -ldC -nbn -kaV -izz -yfk -ild -jwM -qsr -jmG -vVS -ild -rGD -jmG -aHr -ujR -vVS -ild -biV -ujR -jwM -jwM -biV -biV -fhu -brk -jmG -laU -mPr -mPr -xry -iCa -qRd -qEk -oLa -qRd -iCa -iqy -iue -lty -aPe -ylo -ylo -oOQ -ooB -ylo -ylo -tyc -xSQ -hcu -jas -wpl -eso -jas -ghM -wwc -gDu -jas -udP -eso -paB -jas -nQu -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(90,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -oCK -kRr -kRr -hHZ -kRr -kRr -dOa -sak -uaF -khU -khU -ojM -hmW -hmW -hmW -ylP -cec -cec -ojM -gDH -saC -saC -saC -saC -inH -bkm -oCQ -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -saC -saC -saC -oPk -jwP -jwP -eUT -eUT -jwP -mHb -jwP -jwP -saC -saC -saC -saC -hDt -kwg -mOI -pcH -pcH -pcH -sYb -pco -uOX -pcH -sGF -pcH -sYb -nMX -jVn -cjL -pcH -pcH -xVn -toA -ubD -kXY -vTP -oUq -wOl -vOo -bTm -bTm -vOo -kOf -beB -eTV -bQt -iWQ -vcy -efw -ija -fdq -wRg -wMU -cMz -wrC -fBI -doL -wrC -jDT -hoe -jNm -sjy -bUv -qGC -eSx -dsA -mqH -asz -xDP -alv -cqy -ndb -vbX -vbX -vZy -uDb -xxs -wyN -sjy -eNq -fJq -gZL -lxL -pli -ubn -lVp -fXo -jfO -jfO -yca -jfO -qpV -beS -xDV -vXc -uWD -xkO -xkO -xkO -cqs -vXc -vHN -yiM -vXc -hBQ -jmG -ubJ -ubJ -czO -jwM -ild -ild -quD -ild -uKS -ild -ild -ild -jwM -jwM -jmG -uKS -jwM -jwM -jmG -gwP -jwM -uKS -ild -tnM -wHU -woq -jwM -jwM -ild -ild -dco -jmG -laU -mPr -mPr -xry -iCa -ivl -qEk -tkf -iep -iCa -gUR -laU -nax -uvg -cfT -ylo -ylo -ylo -ylo -oSA -jnF -mPr -eaW -jas -jbZ -fhl -dGi -xcX -ueg -xcX -dGi -kwj -kwj -cxo -obX -nQu -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(91,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tea -qWT -pTR -pTR -yei -uTs -cKp -sak -uaF -khU -khU -ojM -hmW -hmW -ylP -ylP -khU -khU -hmW -khU -khU -xQx -sak -vlq -inH -bkm -oCQ -djy -saC -saC -saC -saC -rUU -yco -tiQ -tiQ -tiQ -saC -egI -fbl -upu -saC -saC -pKI -eai -fbl -fbl -saC -saC -saC -kgv -hDt -kwg -jkJ -kwg -kIa -ukb -qDC -qja -qDC -saC -saC -saC -aCG -xzD -rqD -cHx -xzG -kXY -jIL -wbS -ubD -kwg -nBy -uYU -tCV -xDu -xDu -xDu -raI -tCV -qpS -jfq -wRg -nBR -nBR -wRg -wRg -fdq -wRg -gGD -wMU -vut -tMY -uoD -iHK -niQ -mLO -jDT -sjy -ayJ -uUj -kUo -sjy -dVC -lpY -qGC -eYa -sjy -wyN -wyN -twb -dNR -dNR -eUE -geC -sjy -sfH -lxL -hnk -xGf -xGf -fIj -oqt -fJt -yca -jfO -jfO -gLg -mwE -lVp -xDV -vXc -uWD -xkO -fON -snT -qJN -vXc -eLG -yiM -vXc -hBQ -jmG -jmG -dUW -jwM -bYy -oxq -ild -ild -ild -vVS -ild -ild -ild -ild -jwM -asx -uKS -jwM -ild -asx -eHF -ild -hQt -biV -ild -ild -biV -biV -jwM -ild -gwP -psF -jmG -laU -mPr -mPr -xry -wIr -wIr -mSo -sSR -wIr -wIr -jOa -laU -nax -nax -uvg -bMB -qRB -oJU -jhe -jnF -mPr -mPr -eaW -jas -jbZ -vjr -jas -gDu -wwc -ghM -jas -jas -jas -hkq -jas -nQu -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(92,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -oTE -sTK -nyn -nyn -nyn -cki -cKp -sak -uaF -khU -khU -ylP -ylP -saC -saC -ylP -hmW -hmW -fXO -mES -mES -cul -xoU -oVt -htV -bkm -oCQ -djy -saC -lmY -lqH -cFO -fZz -ntC -anV -bfP -tiQ -tiQ -dMK -wyW -tiQ -saC -saC -saC -uhx -pwX -pwX -qjG -saC -oUq -kgv -hDt -iZS -jkJ -vWQ -lxm -kgv -ucC -oUq -bUN -saC -saC -saC -saC -saC -oUq -mVm -rVK -kXY -pIy -tgL -ndt -pcH -uOX -iyr -dxP -lxN -lxN -lxN -fJg -aPK -uDU -cOv -uks -ejh -ucH -ucH -uks -qUw -nBR -gFt -cOv -uko -uez -gCg -qIh -jNm -mOE -jDT -sjy -sjy -sjy -sjy -sjy -lhK -nKo -mqH -bLB -sjy -sjy -sjy -sjy -sjy -sjy -sjy -sjy -sjy -kqb -rNH -bTT -srJ -lxL -pox -dVf -phj -yca -yca -wSt -tjV -adB -lVp -xDV -vXc -uWD -xkO -xkO -xkO -weQ -vXc -vXc -yiM -vXc -lVB -rMF -jmG -jmG -jwM -cZQ -jVH -ild -gWb -xJd -lNf -ldC -ldC -ldC -ldC -iqw -cIo -haY -ldC -ldC -cIo -ldC -ldC -uqa -ldC -ldC -ldC -ldC -ldC -xcF -ldC -jtg -liN -jmG -laU -mPr -mPr -xry -wIr -wIr -fIc -sSR -wIr -wIr -iqy -laU -nax -nax -nax -nax -nax -mPr -mPr -mPr -mPr -mPr -eaW -jas -smZ -aNr -aAI -gDu -wwc -gDu -aAI -aAa -eso -vpe -jas -bWv -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(93,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -rGH -nyn -nyn -nyn -dAu -cKp -rij -uaF -eFC -hmW -ylP -saC -saC -saC -aca -ylP -hmW -iIn -eFC -hmW -xQx -sak -pwX -csV -qjG -oCQ -djy -lIi -ujg -vBc -ujo -hBY -sCJ -fZz -inH -inH -tiQ -bRl -seF -tiQ -saC -saC -saC -yaj -qjG -qjG -qjG -pwC -oUq -xuW -rib -iZS -jkJ -vwO -kgv -kgv -oUq -oUq -oUq -saC -saC -saC -saC -oUq -oUq -mVm -mZi -kXY -wDP -sod -jIM -kXY -eLb -oUq -wOl -vOo -bTm -vOo -pRA -kOf -beB -scC -vHr -iDN -xcS -uHH -bSm -xQR -kld -ttS -pCe -wrC -fQo -dQY -wrC -jNm -mOE -jNm -sjy -sjy -sjy -sjy -sjy -lhK -azl -mnU -xXI -sjy -puq -aeE -avP -uqy -jga -ajH -fKo -sjy -bLK -lxL -hnk -lxL -lxL -pox -oqt -jFL -jfO -xXo -lNs -jfO -mWr -lVp -xDV -vXc -hxn -eOE -eOE -eOE -upZ -vXc -yiM -yiM -vXc -vXc -lVB -rMF -jmG -upr -uLE -jnB -ild -uLE -lpH -uKS -ild -whE -weM -mbO -ild -jmG -vVS -ild -jwM -jmG -xDR -xPa -xPa -xPa -xPa -xPa -iwF -jwM -ild -biV -lNc -aKc -jmG -laU -mPr -mPr -xry -iCa -iep -xgH -tkf -iep -iCa -iqy -laU -mPr -nax -nax -nax -nax -mPr -mPr -mPr -mPr -mPr -cdZ -jas -iRi -vpe -aAI -gDu -wwc -gDu -aAI -eVF -vpe -aqh -jas -bWv -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(94,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -rGH -nyn -nyn -cvl -fFc -dOa -ybZ -uaF -khU -khU -ylP -saC -saC -saC -saC -ylP -ylP -iIn -khU -khU -xQx -sak -pwX -csV -qjG -oCQ -djy -lIi -ujg -rUU -bkm -oCQ -efB -hBY -fZz -inH -inH -iHq -qnZ -saC -saC -saC -kMA -yaj -qjG -qjG -iqc -pwC -oUq -kgv -gKy -fbb -vmY -vwO -kgv -oUq -oUq -oUq -oUq -oUq -saC -oUq -oUq -oUq -oUq -oUq -fFD -oeU -kXY -aYd -kXY -xyK -wmj -oUq -beB -sKn -sKn -sKn -bzc -beB -beB -beB -beB -beB -beB -beB -beB -beB -xgM -ebm -wrC -sgT -sgT -sgT -sgT -jNm -mOE -jNm -sjy -qJQ -aPN -tIW -sjy -lhK -azl -qGC -ygK -sjy -abF -bRP -xxs -xxs -szY -wYE -pLz -mxI -fIj -xGf -hnk -lxL -xGf -fIj -lVp -tib -yca -xXo -lNs -yca -qpV -beS -xDV -vXc -yiM -yiM -yiM -yiM -yiM -vXc -yiM -vXc -vXc -vXc -vXc -hBQ -jmG -biN -biV -hTu -ild -biV -biV -uKS -jwM -ild -ild -ild -tkm -jmG -uKS -jwM -jwM -jmG -xDD -xDR -xPa -xNi -xPa -iwF -xDD -jwM -amY -gsw -dsF -mfb -jmG -laU -mPr -hFX -xry -iCa -qRd -xgH -tkf -qRd -iCa -iqy -laU -mPr -nax -nax -nax -mPr -mPr -mPr -mPr -mPr -xpl -mjz -jas -ffv -nic -jas -ghM -vjr -gDu -jas -uJT -eoG -ipA -jas -tms -nQu -jas -cpy -cpy -cpy -cpy -bMX -"} -(95,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -hpi -bDW -tbZ -tbZ -uag -hNc -dOa -ybZ -uaF -khU -khU -saC -saC -saC -saC -saC -saC -ylP -iIn -khU -khU -xQx -sak -vlq -csV -bkm -oCQ -djy -xRb -ujg -tvw -vLc -jei -jei -jei -rNM -xYD -kry -cjw -qnZ -saC -saC -saC -bms -yaj -qjG -qjG -qjG -bms -oUq -oUq -scp -nMX -pco -ydv -oUq -oUq -oUq -oUq -uWk -wHn -oUq -oUq -oUq -jmL -mro -oUq -jqu -xzG -kXY -aYd -nPV -vqZ -oUq -oUq -hUx -hUx -hUx -hUx -sBf -oyT -ahP -yjp -wrC -wrC -iBM -fqj -fqj -wrC -qBC -abN -rWr -sgT -wUL -alI -sgT -jDT -mOE -jNm -sjy -jEj -kRZ -sAU -qGC -jpc -azl -qGC -vcL -sjy -mmA -dZx -uDb -eUh -uDb -uDb -aeE -mxI -kDW -pli -oLd -ndf -xGf -fIj -lVp -cZm -yca -gXz -eAC -yca -jan -beS -xDV -vXc -vXc -yiM -yiM -yiM -yiM -vXc -vXc -vXc -vXc -vXc -yiM -hBQ -jmG -oQN -biV -tQo -qwZ -biV -aFv -vVS -jwM -gwP -ild -xJd -jwM -jmG -wZt -jwM -nPc -jmG -xDD -xDD -jmG -jmG -jmG -dgR -dgR -jmG -jwM -ora -ild -jmG -jmG -laU -mPr -hFX -xry -iCa -qRd -qEk -oLa -qRd -iCa -iqy -laU -mPr -mPr -nax -mPr -mPr -mPr -mPr -mPr -nNa -oaN -jas -jas -jas -jas -jas -gXO -qLb -wKn -jas -jas -jas -jas -jas -jas -cwv -jas -cpy -cpy -cpy -cpy -bMX -"} -(96,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -kRr -kRr -rXF -hZG -dOa -dOa -ybZ -qZK -ojM -ojM -saC -saC -saC -saC -saC -saC -saC -lhz -cec -cec -rdg -ybZ -saC -csV -bkm -oCQ -djy -lIi -lmY -fkL -rUU -ntC -xhP -nOG -lvL -xcr -inH -iHq -ylq -saC -saC -saC -bms -yaj -qjG -qjG -qjG -bms -saC -saC -afL -kJq -kph -tyk -ucC -oUq -oUq -vfy -xpn -krD -qim -mTD -dfV -oEu -mkD -oUq -oUq -gjK -pAE -faj -ism -mPh -oUq -oUq -pGh -ugV -ugV -ugV -fjr -jDO -sGP -wrC -wrC -eMn -eGq -eiE -atv -uSv -tMY -ogU -neV -jYk -jPw -qgr -sgT -jDT -uAa -jNm -sjy -ayJ -mqH -dsv -pcQ -sAU -asz -xDP -alv -byS -ndb -jQk -sLk -nel -eUh -xxs -ruw -sjy -kqb -uVy -itG -ogL -gaS -kqb -lVp -gVZ -yca -gXz -eAC -jfO -jan -beS -xDV -yiM -vXc -vXc -umf -umf -vXc -vXc -vXc -vXc -yiM -yiM -yiM -hBQ -jmG -qxm -biV -doO -wsT -biV -aFM -liN -ild -eHF -ftK -pMs -jEW -jmG -nnB -fvN -ful -jmG -xDD -xDD -jmG -jmG -jmG -xDD -xDD -jwM -aTm -fqJ -dsF -jmG -tOo -sdl -hFX -hFX -xry -iCa -iep -pKB -erP -qRd -iCa -iqy -laU -mPr -mPr -mPr -mPr -mPr -mPr -mPr -pOU -rot -jas -jas -uvA -wrN -kGZ -snQ -gDu -vjr -ghM -dDn -oJH -pYI -tRp -jas -vLP -sEK -jas -jas -jas -cpy -cpy -bMX -"} -(97,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -uOz -hjU -dOa -dOa -dOa -dZs -bJk -uaF -khU -khU -saC -saC -saC -saC -saC -saC -saC -gHB -khU -khU -xQx -hcb -saC -csV -bkm -oCQ -saC -saC -lmY -lmY -ujg -ujg -ujg -lmY -lmY -srj -dxS -lmY -saC -saC -saC -pwC -qjG -yaj -qjG -qjG -pwC -saC -saC -saC -hXt -saC -jkJ -iKe -ucC -oUq -oUq -xNp -bbS -kXY -xZE -kXY -xZE -kXY -eQj -szr -oUq -oUq -oUq -omn -oUq -oUq -oUq -oUq -rxI -fjr -ugV -ugV -ugV -jDO -sGP -wrC -eSn -lkR -uYg -sQi -tMY -wrC -amr -jnA -int -sgT -wVF -alI -sgT -jDT -jDT -jNm -sjy -ayJ -vcL -mqH -sxp -ukK -azl -qGC -aqt -sjy -trU -xxs -xxs -nrP -uDb -xxs -fiZ -mxI -mvm -tiZ -dMl -nJu -iDD -pzG -lVp -pzD -yca -yca -jfO -jfO -jan -beS -xDV -yiM -yiM -vXc -vXc -vXc -vXc -vXc -vXc -omZ -vfQ -vfQ -vfQ -rMF -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -jmG -fAe -wZy -sWe -jmG -aZj -aZj -jmG -jmG -jmG -vXY -qPA -ild -ild -biV -biV -jmG -laU -mPr -hFX -aHF -pnv -wIr -wIr -lcR -awu -wIr -wIr -tkS -gyF -mPr -mPr -mPr -mPr -mPr -mPr -mPr -eaW -jas -jas -cSL -nvC -jat -xPg -vpe -eso -jpx -eso -eso -uMl -vWI -pYI -aAI -sat -wIu -iiK -bcB -jas -cpy -cpy -bMX -"} -(98,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -nGA -dOa -dOa -dOa -wiy -sPt -dZs -ybZ -hbD -khU -khU -saC -saC -saC -saC -saC -saC -saC -iIn -khU -khU -xQx -saC -saC -csV -bkm -oCQ -saC -saC -saC -saC -inH -inH -inH -hQN -inH -csV -inH -saC -saC -saC -qXd -qjG -qjG -yaj -qjG -qgx -saC -saC -saC -bUN -hDt -kwg -jkJ -vwO -ucC -oUq -oUq -oUq -tcZ -kXY -wwG -hCH -hCH -mzX -har -tig -oUq -bYZ -kVO -caE -xQq -oUq -oUq -oUq -rxI -fjr -fjr -ugV -fjr -jDO -sGP -wrC -mQP -atv -atv -tMY -xYi -wrC -aDX -fIg -wrC -sgT -sgT -sgT -sgT -oXm -oXm -oXm -sjy -sjy -oQb -lNx -qpq -qGC -bmj -mqH -alu -sjy -tWO -mHo -xxs -mrM -uDb -mHo -cmK -mxI -egW -bBI -pdG -sqQ -qiN -nBe -lVp -mET -xmS -tjV -yca -khr -pgq -lVp -xDV -vXc -yiM -yiM -yiM -yiM -yiM -vXc -omZ -rMF -jmG -asx -uXC -jmG -jmG -jmG -hyR -rJs -jmG -eaa -caO -mhE -jmG -hif -caO -yad -edi -wZy -jmz -uTh -aJL -mRa -wYm -wYm -xVR -jmG -jmG -jzF -wgH -jwM -jwM -ild -meb -jmG -laU -mPr -pOU -bYV -wIr -wIr -bdI -nPs -rYs -mMa -wIr -wIr -omP -lAt -mPr -mPr -mPr -mPr -mPr -nax -eaW -jas -jDu -vpe -vpe -sVJ -bXZ -fhl -nQu -vxf -eso -eso -eso -vWI -pYI -aAI -mlr -vpe -uEE -ldX -jas -cpy -cpy -bMX -"} -(99,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -rGH -bIr -nyn -nyn -wLQ -dZs -sak -uaF -khU -khU -saC -saC -saC -saC -saC -saC -hmW -iIn -hmW -hmW -xQx -saC -saC -csV -bkm -oDW -hBY -iWf -sCJ -sCJ -sCJ -sCJ -sCJ -fNP -vtG -brs -sCJ -saC -saC -qvu -fZz -qjG -qjG -yaj -qjG -pwC -saC -saC -saC -bUN -mdG -kwg -jkJ -vwO -euU -oUq -oUq -lsu -ubD -aVj -hCH -hCH -tpV -kXY -har -mWT -oUq -xQq -kVO -qfo -nMB -oUq -oUq -oUq -oUq -fjr -fjr -fjr -fjr -jDO -sGP -wrC -wrC -wrC -aFQ -wrC -wrC -wrC -sDg -sYg -cMz -leF -bck -hHb -jGS -wLn -oEB -oEB -sjy -sjy -sjy -jgT -mNo -iaU -sjX -otJ -sfe -sjy -jCd -xfz -nwr -hFE -jCd -xfz -dUV -sjy -cLf -ogA -oLo -efK -etx -dSK -lVp -lVp -oxv -fZX -fWI -nIY -lVp -lVp -eyc -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -vfQ -rMF -jmG -jmG -cUY -cUY -fJM -jmG -gDK -khN -pwf -jmG -xbg -jBR -mhE -jmG -fMV -wly -dIK -jRA -wZy -iRU -unC -eWc -wdd -mFZ -qNR -ifB -dsn -jmG -jmG -ycH -gQV -piY -piY -aDh -jmG -tOo -gQG -tOo -wIr -wIr -rxt -wck -oqp -qzQ -wJn -wNA -wIr -wIr -tyh -lIq -mPr -mPr -mPr -mPr -nax -eaW -jas -jSM -vpe -vpe -kpB -bXZ -wwc -vlp -nDR -vpe -eso -eso -lzB -pPM -jas -wNR -sKx -vpe -mlr -jas -cpy -cpy -bMX -"} -(100,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -iSV -rGH -bIr -nyn -nyn -wLQ -cKw -sak -uaF -khU -bOF -hmW -saC -saC -saC -saC -saC -eFC -iIn -hmW -hmW -saC -saC -saC -csV -bkm -oCQ -oCQ -wLN -oDW -oCQ -bWF -prt -prt -laN -oCQ -oCQ -saC -saC -saC -saC -rBk -pwX -pwX -uhx -vlq -vlq -saC -saC -saC -ucC -hDt -jhj -vmY -vwO -kgv -oUq -oUq -sJH -bbS -kXY -aVj -har -qts -nMX -nMX -kyf -xTE -raH -bof -sMA -oMo -oUq -oUq -oUq -fjr -fjr -fjr -fjr -fjr -jDO -sGP -wrC -fUe -veH -pIM -pnP -ijQ -wuY -nyH -aiK -nBR -wRg -nBR -wRg -wRg -nBR -nBR -wRg -cAN -sjy -sjy -sjy -sjy -vUk -weZ -sjy -sjy -sjy -sjy -kWE -kWE -sjy -kWE -kWE -sjy -sjy -kqb -ovr -uvb -vPT -rRP -kqb -lVp -lVp -lVp -svO -fSP -lVp -kqb -kqb -wvY -wvY -wvY -kqb -jmG -wZy -rJC -wZy -jmG -jmG -odS -bnP -wiE -oWN -jmG -xkJ -wly -jXF -jmG -eaa -wly -mhE -jmG -tfg -wly -tUt -jmG -jmG -kYq -unC -axz -gXc -wiE -wEW -ifB -yhi -bUH -jmG -jmG -blz -blz -blz -jmG -jmG -wIr -eSZ -wIr -wIr -tgv -mrH -fIa -iQo -tkf -fTP -gHg -hOk -wIr -wIr -nAN -mPr -mPr -mPr -mPr -nax -wWn -jas -gdK -rqP -rqP -vrW -cpx -hNk -vpe -vpe -vpe -eso -eso -lzB -uRh -jas -guk -xFv -vpe -tKE -jas -cpy -cpy -bMX -"} -(101,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -fhX -eNL -nyn -nyn -nyn -tic -eXe -rij -uaF -hmW -hmW -hmW -cec -khU -khU -saC -vhf -iAy -rxa -khU -khU -saC -saC -saC -rgr -xgd -prt -prt -gPV -prt -prt -wyf -oCQ -oCQ -oCQ -oCQ -saC -saC -saC -saC -oCQ -oDW -qjG -qjG -yaj -qjG -saC -saC -saC -tTv -nQd -fXR -kXY -aYd -hPm -inZ -tTv -oUq -oUq -ubg -gVb -xzG -xzG -lvM -xyK -gyd -jAG -oUq -kVO -pGQ -lXY -fts -oUq -oUq -oUq -fjr -fjr -fjr -fjr -fjr -jDO -sGP -wrC -fUe -eiE -lfh -hjv -doc -uiS -wMU -fdq -hEn -vZO -nBR -wRg -wRg -wRg -nBR -wRg -cAN -sjy -vnh -rcx -aeE -gqA -kko -aeE -aeE -qit -fiZ -fiZ -aeE -rcx -wTw -hHO -shF -mxI -eJl -fuc -pNs -lxL -dEp -pox -qEj -jkq -sgA -bWw -fIj -vvy -kqb -xbU -xbU -lTo -lTo -kqb -jmG -jLQ -bQg -wTZ -wTZ -jmG -lbf -wly -wiE -jxh -jmG -jmG -qLC -jmG -jmG -jmG -eUV -jmG -jmG -wZy -wRI -wZy -jmG -gOS -kyo -yhi -yhi -ifB -krm -wiE -wGJ -vNi -jli -jmG -qxS -cAh -cAh -cAh -dba -jmG -hyn -iep -mxE -aee -aEQ -fTP -xgH -qQR -qQR -tkf -fTP -mrH -ogh -iCa -hVC -mPr -mPr -mPr -nax -nax -wWn -jas -xdQ -eso -eso -eso -wwc -ggZ -iqV -iqV -iqV -ixO -eso -eso -yfy -aAI -pFh -vjr -vpe -iqs -jas -cpy -cpy -bMX -"} -(102,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -nnF -hJa -hJa -hJa -hJa -aqv -cKy -xoU -wWk -iAy -iAy -iAy -lLT -qEC -mES -mES -lJd -hmW -hmW -khU -saC -saC -saC -tiQ -efI -bkm -oCQ -oCQ -wLN -oCQ -oCQ -bCv -oCQ -oCQ -oCQ -saC -saC -saC -saC -oCQ -bWF -prt -pHT -pHT -mlE -saC -saC -saC -tiQ -tTv -tTv -pMX -pMX -gFV -pMX -tTv -tTv -tTv -oUq -oUq -oUq -oUq -iZZ -aNi -oUq -oUq -oUq -oUq -jwV -kVO -qHD -oUq -oUq -oUq -oUq -oUq -fjr -fjr -rxI -fjr -jDO -sGP -wrC -wrC -tiX -dSd -ndd -uaw -vOl -ojr -hTH -qde -wRg -vcy -efw -ija -wRg -wRg -wRg -wMU -sjy -aeE -kOS -uDb -xxs -emz -ndb -ndb -beD -vbX -sLk -sLk -sLk -jQk -ndb -sxo -mXP -yet -sbV -ucM -cpJ -cLi -ehw -cIK -ehw -uKa -ucM -uKa -ehw -cIK -ehw -uKa -uKa -veP -jpC -keN -eSY -tPs -tPs -loK -gWc -grP -jze -grP -grP -gWc -xNd -iYt -qTB -sXA -ogB -sBt -grP -fiu -grP -dBE -qTB -cCN -kGa -wfo -grP -xNd -grP -eDz -grP -aVA -xNd -xNd -gWc -qTB -tPs -tPs -tPs -qTB -ylK -asf -pOs -asf -mzu -vUe -hoy -qzU -qQR -qQR -tkf -qzQ -lpb -bsQ -iCa -snj -mPr -mPr -bwd -nax -pOU -mCq -jas -lWz -eso -eso -eso -xFv -bxr -iqV -iqV -xHj -gvU -boQ -vpe -tRp -aAI -jtN -urh -vpe -iiK -jas -cpy -cpy -bMX -"} -(103,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -nyn -nyn -nyn -nyn -nyn -cki -eXe -sak -uaF -clA -jmC -jmC -inQ -spx -oDt -jmC -jmC -jmC -jmC -jmC -saC -saC -saC -tiQ -saC -bkm -oCQ -oCQ -saC -saC -oCQ -bCv -oCQ -oCQ -saC -saC -saC -saC -oCQ -oCQ -bCv -oCQ -oCQ -saC -saC -saC -saC -tiQ -tiQ -sja -uBV -qFY -xVJ -fMs -lpw -vws -glP -tiQ -tiQ -tiQ -bjd -tbt -gwX -oMS -lpz -oUq -oUq -oUq -oUq -cTU -oUq -oUq -oUq -oUq -oUq -rxI -fjr -fjr -rxI -fjr -jXQ -wvK -ahP -wrC -wrC -psV -fyf -ucg -uTv -wMU -dqL -nBR -wRg -wRg -wRg -wRg -wRg -wRg -wRg -wMU -jJB -bDP -xxs -eUh -eUh -nrP -eUh -uDb -uDb -aYD -uDb -gLk -uDb -uDb -dXt -gqA -gLu -jvQ -lxL -oLd -wTr -xDJ -fIj -fZR -pox -wTr -qQS -wTr -pox -fZR -pox -wTr -wTr -wTr -pox -jxh -qic -unC -unC -jxh -asx -yhi -wYe -wiE -yhi -asx -wiE -wiE -qic -sgm -wly -wiE -yhi -wdd -yhi -ffj -dWn -wiE -yhi -wYe -vov -wzx -gXc -wiE -wiE -yhi -wdd -jAI -asx -dfI -qic -qic -qic -dfI -asx -bpp -tkf -bpp -avJ -oqp -fTP -xgH -qQR -qQR -oLa -cpX -kiU -nUu -oRO -bEt -mPr -mPr -nax -gvG -wWn -jas -jas -fBY -eso -eso -nLy -qHr -kce -jas -jas -prf -fAY -ugI -kwz -jas -jas -moj -vjr -iJZ -iiK -jas -cpy -cpy -bMX -"} -(104,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -nyn -nyn -nyn -nyn -nyn -tic -cKC -rij -vqp -xec -sak -sak -peh -wXM -sak -sak -sak -sak -sak -saC -saC -saC -saC -tiQ -saC -saC -saC -saC -saC -saC -saC -rAr -wLN -wLN -saC -saC -saC -saC -oCQ -oCQ -bCv -oCQ -saC -saC -saC -saC -kKB -lIi -tiQ -sja -vCx -qjG -sCJ -jIX -gTl -fZz -bVU -vjw -tHd -tiQ -bjd -nWH -jCi -jCi -dKG -jCi -bjd -tMZ -tMZ -rif -soL -tMZ -tMZ -tMZ -ien -rxI -gfd -axb -ryM -fjr -fjr -jDO -huY -ahP -wrC -wuY -uiS -wuY -wrC -oZl -fdq -fHL -beB -sKn -sKn -sKn -beB -dKs -wRg -nyH -poY -gqA -xxs -uDb -uDb -xtO -nPo -uDb -aeE -fiZ -fiZ -pHO -fQh -aeE -vcg -psy -mxI -fIj -cHg -pNs -xGf -lxL -pox -qEj -kHS -pox -pxw -fIj -vvy -kqb -lTo -xbU -xbU -lTo -kqb -jmG -cAh -wTZ -wTZ -bQg -jmG -ojH -wly -wiE -oWN -jmG -irZ -yhi -dfI -eWc -pCm -yhi -yhi -vjR -wiE -dfI -dfI -wiE -yhi -wLd -jmG -icT -gXc -yhi -wiE -yhi -gXc -oWN -jmG -qxS -cAh -cAh -cAh -dba -jmG -hyn -qRd -mxE -wIr -nWz -fTP -xgH -qQR -qQR -oLa -fTP -mrH -jNs -iCa -oBE -mPr -nax -nax -nax -eaW -gXO -vpe -eso -vpe -eso -vCz -vpe -kce -jas -tcJ -xPF -xPF -xPF -xPF -ljr -jas -nIc -tOx -eso -ehA -jas -cpy -cpy -bMX -"} -(105,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -nyn -nyn -nyn -mNb -tbZ -vuO -tiQ -tvA -imZ -imZ -imZ -jEu -nTl -ehd -ntt -ntt -ntt -nTl -jEu -saC -saC -saC -saC -tiQ -saC -saC -saC -saC -saC -saC -saC -bCv -oCQ -oCQ -oCQ -saC -saC -saC -wLN -wLN -uka -gMf -saC -saC -jzE -fty -inH -xQc -xQc -xQc -tsk -ehO -qjG -oCQ -oCQ -hBY -ejH -dSE -mlX -tiQ -bjd -pqQ -mdH -jyN -dKG -jCi -bjd -tMZ -asC -pdc -pdc -beO -iYu -tMZ -ien -ien -yhp -phA -bsI -fjr -fjr -jDO -fjr -huY -hUx -hUx -hUx -ahP -wrC -kAF -fdq -wRg -wRg -wRg -nBR -nBR -wRg -wRg -nBR -aHK -sjy -fiZ -xxs -uDb -kBB -nrP -xxs -aeE -sDU -sjy -kWE -kWE -sjy -kWE -kWE -sjy -sjy -kqb -owX -hnk -lxL -bow -kqb -kqb -kqb -kqb -brK -ouA -kqb -kqb -kqb -wvY -wvY -wvY -kqb -jmG -wZy -wZy -wZy -jmG -jmG -pJr -wly -yhi -oWN -jmG -oWN -oet -yhi -onX -pCm -yhi -wiE -wiE -wGJ -vMu -wiE -yhi -vNi -qgL -jih -eWc -gXc -yhi -wiE -wiE -hft -ueA -jmG -jmG -blz -blz -blz -jmG -jmG -wIr -eSZ -wIr -wIr -oYp -gHg -spJ -oLa -oLa -fTP -gHg -bBs -wIr -wIr -laU -mPr -nax -nax -nax -eaW -gXO -vpe -eso -eso -eso -aTj -vpe -jMv -iwr -tzd -ykO -mXN -qWB -xiq -tzd -jas -pSQ -lTQ -nQG -rAb -jas -cpy -cpy -bMX -"} -(106,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -nyn -nyn -shE -qKM -kRr -kRr -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -ebu -hiO -pct -ebu -ebu -ebu -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -saC -gMf -bCv -oCQ -oCQ -oCQ -saC -saC -bQI -oCQ -oCQ -eeh -saC -saC -saC -hLb -ntC -inH -qjG -lIi -xQc -lIi -lIi -qjG -oCQ -qjG -qjG -bCv -djy -eFl -tiQ -bjd -qEQ -lYK -hvh -pqQ -jCi -bjd -tMZ -npe -xZI -oFf -keR -iYu -tMZ -ien -rxI -fth -hUI -tUF -fjr -fjr -jXQ -nQx -fjr -ugV -ugV -ugV -sGP -oXm -nyH -dqL -wRg -wRg -sxH -mRN -ija -wRg -wRg -nBR -bxa -sjy -wSp -tcS -uDb -uDb -xtO -uDb -aeE -sjy -sjy -ape -ape -sjy -dXI -kRQ -uVI -sjy -vNI -xGf -pNs -kVV -xGf -opu -kqb -bPf -vLt -tJy -dQb -aiC -kqb -kqb -xXg -xXg -xXg -kXD -kXD -kXD -kXD -kXD -xXg -jmG -jmG -ouS -cTx -ahn -jmG -oSC -yhi -yhi -yhi -xju -yhi -wiE -wiE -mld -wiE -tex -yhi -yhi -oDv -qic -eWc -wdd -yhi -yhi -xPK -dvK -jmG -jmG -mRw -jsq -opQ -jsq -jsq -jmG -xzK -lxC -xzK -wIr -wIr -qrb -klV -hoy -afr -hBK -wpt -wIr -wIr -xzK -oxO -fWG -uwT -uwT -uwT -aru -gXO -vpe -vpe -eso -vpe -aTj -vpe -crT -bWV -pPB -pmo -jHB -jHB -nxC -tzd -jas -jas -pyr -qsN -aAI -jas -cpy -cpy -bMX -"} -(107,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -shE -tbZ -vuO -nQv -kRr -tiQ -tiQ -tiQ -hBg -hBg -hBg -tiQ -ygQ -ygQ -oUe -ygQ -ygQ -ygQ -tiQ -dgb -fLK -dgb -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -gMf -bCv -oCQ -oCQ -oCQ -saC -bQI -oCQ -oCQ -oCQ -bCv -bQI -saC -rAO -kIE -inH -qjG -qjG -lIi -xQc -xQc -rqc -jCT -mHg -oCQ -acD -bCv -djy -tWx -tiQ -bjd -qEQ -lYK -hvh -pqQ -jCi -bjd -tMZ -lfV -mTt -qRV -ntV -pdc -tMZ -ien -ien -rxI -ien -rxI -ien -ien -ien -jXQ -vwi -vwi -vpa -ugV -sGP -oXm -wTi -dqL -nBR -wRg -wRg -wRg -wRg -wRg -wRg -wRg -bxa -sjy -sjy -lsF -xxs -uDb -lui -uDb -aeE -mxI -kpP -iXT -pLT -sjy -flI -gMb -nOB -bAe -pox -bDR -pNs -pli -lxL -pox -pGl -bPf -try -dQb -try -gaL -kqb -kqb -kqb -xXg -fFH -tTD -tTD -tTD -tTD -tTD -fFi -xXg -jmG -hFh -uXC -jmG -jmG -jmG -oZh -srG -gJI -jmG -tfg -tfg -nTH -dvK -woy -yhi -rlV -tex -nEe -xMX -nYq -yhi -wdd -lVF -lVF -jmG -jmG -hTu -aVX -meb -meb -meb -aVX -jmG -nMy -fWG -xRU -xzK -wIr -wIr -tsY -mrH -dHi -cQU -wIr -wIr -teD -oxO -gme -sMN -sMN -sMN -sMN -xEK -nNC -kwj -wiU -lWf -lWf -mOy -vpe -kZs -wKn -tyK -agE -agE -agE -tyK -tzd -jas -bsh -xFv -eso -bsh -jas -cpy -cpy -bMX -"} -(108,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -vuO -wFR -kRr -sxO -tiQ -tiQ -cEh -cEh -cEh -cEh -ebu -ebu -ebu -ebu -vHv -vsz -vsz -vsz -vsz -vsz -wTM -pct -saC -saC -tiQ -tiQ -saC -saC -saC -gMf -gMf -bCv -oCQ -oCQ -oCQ -wLN -oCQ -bWF -prt -prt -ayw -prt -eRl -mxc -inH -inH -vRP -bRV -lIi -lIi -bHp -nPW -rqc -dfD -rvi -nrz -cvr -gnI -inH -tiQ -bjd -qEQ -lYK -hvh -pqQ -jCi -bjd -tMZ -okc -mTt -mMb -ntV -pdc -tMZ -ien -ien -ien -ien -ien -ien -ien -ien -ciU -dzt -lsC -hNR -bRO -rYi -wrC -pkA -bje -lml -wMU -wMU -pCe -qGW -qGW -qGW -nER -sjy -sjy -sjy -waJ -xxs -uDb -xtO -qDr -fiZ -mxI -mty -mvB -pVA -sjy -jvk -rLx -nOB -bAe -fIj -xGf -pNs -lxL -xGf -fIj -qEj -aNH -dFQ -dQb -try -try -azf -lzJ -kqb -kqb -xXg -nXi -tTD -rnB -rnB -tTD -tTD -fFi -kXD -gTB -kXD -wIi -vNk -vNk -vNk -wpn -wpn -vNk -uIZ -wpn -vNk -vNk -ueA -xPK -yhi -yhi -saz -avX -qot -yhi -wsa -jmG -jmG -jmG -biV -brk -rdF -ild -jwM -psP -slF -jmG -nMy -fWG -fWG -xRU -xzK -wIr -wIr -jju -pfx -wIr -wIr -xzK -oxO -uwT -tKe -uwT -uwT -uwT -uwT -aru -gXO -vpe -vpe -eso -lNl -tcK -vpe -vpe -frX -tyK -axF -tyK -tyK -tyK -tzd -jas -iiK -xFv -nQG -dmy -jas -jas -cpy -bMX -"} -(109,1,1) = {" -bMX -cpy -cpy -cpy -cpy -ixy -kRr -pfR -tiQ -tiQ -tiQ -xvu -cEh -cTX -iZI -iZI -iZI -svW -jMV -mwd -awU -mwd -fPk -lIM -svW -jBM -axr -bfa -wwu -saC -saC -tiQ -tiQ -tiQ -saC -saC -gMf -jvC -prt -prt -prt -gPV -prt -laN -oCQ -oCQ -oCQ -oCQ -fnc -jhF -lIi -qjG -qjG -inH -mPY -lIi -xQc -xQc -lIy -qJz -nla -wLN -ewC -rja -jCH -tiQ -bjd -nWH -lYK -hvh -nWH -jCi -bjd -tMZ -lfV -eQw -fxd -ntV -pdc -tMZ -ien -ien -cpy -ien -cpy -ien -ien -rME -nQQ -qSH -xEd -umR -hBe -wKg -wKg -wKg -wge -xzW -wKg -wKg -wKg -gXo -gXo -gXo -gXo -sjy -sjy -sjy -jlM -uDb -uDb -xtO -uDb -fiZ -mxI -eDc -jjP -biL -sjy -mAD -iAU -wiI -sjy -kqb -aFJ -nfP -wob -lxL -pox -qEj -gaL -dQb -jgs -mKm -dQb -jpQ -dQb -rFn -kqb -xXg -fFH -tTD -tTD -rnB -tTD -tTD -tTD -rnB -kcN -rnB -lZZ -vNk -vNk -pbP -xsM -pDW -vNk -aBB -hyN -pmS -vNk -vNk -dvK -yhi -wiE -wly -qMo -sJI -yhi -wiE -pJb -jmG -iNM -ild -dco -wQf -jwM -liN -ild -jwM -asx -nMy -fWG -fWG -fWG -xRU -lxC -lxC -lxC -jzi -mMO -mMO -eSp -weJ -weJ -qUh -uwT -uwT -uwT -fWG -aru -wKn -eso -vpe -vpe -aBY -vjr -vpe -vpe -wKn -ceT -ceT -tyK -tyK -ceT -tzd -jas -mFG -vZS -vpe -rAb -qrg -jas -cpy -bMX -"} -(110,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -kRr -tiQ -tiQ -cGM -cEh -cEh -aLJ -dDS -iZI -iZI -svW -svW -dAe -jBM -nPX -jBM -jBM -gak -svW -svW -nPX -jBM -jBM -saC -saC -saC -saC -tiQ -tiQ -saC -saC -gMf -oCQ -oCQ -oCQ -wLN -oCQ -oCQ -oCQ -oCQ -oCQ -oCQ -tvh -inH -lIi -qjG -inH -inH -mPY -lIi -lIi -xQc -xdf -txd -dfD -oCQ -tvh -wPw -kIf -tiQ -bjd -pqQ -lYK -hvh -nWH -jCi -bjd -tMZ -npe -rZq -ldY -uaS -iYu -tMZ -cpy -cpy -cpy -cpy -cpy -cpy -ien -rMR -jGa -qSH -xEd -umR -gEM -wKg -wKg -adK -tlc -onC -onC -wKg -wKg -lCs -lCs -lCs -iPE -iPE -ldA -sjy -aeE -qDr -xxs -nrP -uDb -ruw -sjy -sjy -frK -sjy -sjy -sjy -sBY -sjy -sjy -vIw -xDJ -nfP -wTr -xGf -pox -qEj -dDK -try -try -oZM -dQb -try -mKm -crz -kqb -kqb -fFH -rnB -tTD -rnB -rnB -tTD -tTD -sTX -oCt -tTD -lZZ -vNk -mol -ozn -xMO -xMO -cSk -xMO -ovA -xMO -wsB -wpn -kem -yhi -yhi -wly -wiE -wiE -onX -wiE -iwy -blz -jCU -wQf -ild -ild -ujR -hQt -ild -ild -sYX -nMy -fWG -fWG -fWG -uwT -uwT -uwT -uwT -tKe -uwT -uwT -uwT -uwT -uwT -dUY -uwT -fWG -fWG -fWG -aru -wKn -eso -eso -vpe -xAP -vjr -vpe -kZs -mCb -tzd -lNH -gAI -ceT -lNH -tzd -jas -dJy -vjr -sTG -dJy -cEB -jas -cpy -bMX -"} -(111,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -cEh -cEh -aLJ -aLJ -aLJ -dDS -iZI -fFw -iZI -ebu -dAe -xls -vnf -ebu -jBM -gak -ebu -jBM -dZi -cVO -qMk -fvj -saC -saC -saC -saC -saC -saC -saC -saC -gMf -gMf -oCQ -wLN -oCQ -oCQ -oCQ -oCQ -oCQ -oCQ -tvh -inH -qjG -qjG -ntC -vLg -sCJ -gns -lIi -xQc -xQc -rWK -dfD -oCQ -tvh -ggl -xQc -tiQ -bjd -pqQ -lYK -hvh -pqQ -jCi -bjd -tMZ -npe -pdc -tfm -pdc -iYu -tMZ -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -ssh -qSH -xEd -pRv -tpL -qSY -tTE -gIa -kRg -gIa -gIa -dqW -nbG -gIa -opl -opl -opl -kEN -ttk -sbk -bJM -ndb -vbX -tjM -ndb -bJM -ejI -tVp -nLD -xen -oXQ -jQk -uMc -xxs -bAe -fIj -xDJ -nfP -wob -xDJ -pox -qEj -try -mKm -dQb -jhH -wcg -dQb -try -try -hqN -kqb -fFH -rnB -tTD -cpy -cpy -tTD -lzw -tTD -oCt -tTD -lZZ -vNk -mol -ozn -ozn -eZM -xMO -eZM -xMO -ozn -wsB -wpn -eaa -yhi -yhi -wYe -vMu -yhi -tex -bJZ -pkg -jmG -gEE -ojy -ild -ild -biV -hQt -ild -jwM -sYX -xzK -ycg -fWG -fWG -fWG -uwT -uwT -uwT -tKe -uwT -uwT -uwT -uwT -uwT -fWG -fWG -fWG -uje -fWG -aru -jas -jas -eHl -mNc -eso -xFv -eso -vpe -jas -aIr -xPF -xPF -xPF -xPF -dFz -jas -ovp -bUV -vpe -dJy -qrg -jas -cpy -bMX -"} -(112,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -tiQ -cEh -cEh -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -iZI -ebu -dAe -oIS -nTl -nTl -ebu -gak -ebu -iZI -avg -ygQ -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -gMf -saC -saC -oCQ -lbC -oCQ -oCQ -oCQ -hNB -xyD -inH -qjG -lIi -qXd -cEg -oCQ -qSF -lIi -lIi -seF -kRs -vLc -qjG -tvh -inH -pay -tiQ -bjd -nWH -lYK -hvh -pqQ -jCi -bjd -tMZ -tMZ -tMZ -tMZ -tMZ -tMZ -tMZ -cpy -cpy -cpy -cpy -cpy -cpy -ien -tNQ -qSH -qSH -xEd -umR -xGy -cOf -qAa -tQi -jdn -tQi -tQi -qAa -jhz -tQi -gwb -gwb -xZz -yjr -uvi -wfd -gqA -xxs -qDr -nrP -xxs -gqA -gLu -bDP -uDb -eUh -nud -nud -uDb -xxs -bAe -daR -lxL -pNs -xGf -xGf -wAc -kqb -ffz -dQb -try -dFQ -sIj -dQb -dQb -rLp -giD -qni -fFH -rnB -tTD -tTD -cpy -cpy -lzw -tTD -oCt -dqt -xXg -vNk -mol -wGh -gij -mHv -nlW -eHY -ozn -xMO -wsB -wpn -eaa -wiE -tex -fiS -bJZ -wdd -yhi -yhi -cxJ -asx -jCU -jwM -jwM -ild -lmJ -uKS -jwM -jwM -qEc -jmG -gkY -ycg -fWG -fWG -uwT -uwT -uwT -tUL -uwT -uwT -uwT -fWG -fWG -fWG -fWG -fWG -fWG -fWG -xRU -xzK -jas -cMd -rwC -eso -wwc -eso -vpe -jas -jas -xQD -rUO -rUO -uHy -jas -jas -bsh -xFv -vWI -dJy -jas -jas -cpy -bMX -"} -(113,1,1) = {" -bMX -cpy -cpy -cpy -cpy -tiQ -cEh -cEh -aLJ -aLJ -aLJ -aLJ -fib -fXU -fib -fib -aLJ -ebu -dAe -vXP -nTl -nTl -uLc -fnI -fAb -foq -avg -ygQ -ygQ -ygQ -dAe -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -vjl -vjl -oCQ -oCQ -oCQ -oCQ -djy -csV -wAY -qjG -lIi -vLg -sYm -oCQ -hBY -gns -lIi -seF -nTi -kBF -qjG -xwf -ayg -mlX -tiQ -bjd -pqQ -lYK -hvh -qEQ -jCi -mPj -mPj -mPj -mPj -mPj -mPj -mPj -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -rNm -jOw -qSH -xEd -umR -kQZ -wKg -wKg -lCs -iPE -iPE -lCs -jhz -jhz -iPE -eQK -lCs -lCs -wEa -lCs -sjy -aeE -cBp -cvi -tLE -iXT -fiZ -sjy -vnh -aeE -npq -qti -xbT -wdH -vnh -sjy -inE -bLX -htA -vNO -bLX -vNo -kqb -xqJ -oKx -dQb -try -try -dQb -gaL -try -vkT -kqb -fFH -rnB -tTD -tTD -cpy -cpy -lzw -fgB -tes -xXg -vNk -vNk -fEZ -xMO -xMO -mHv -vBB -vMJ -xMO -vkx -vNk -vNk -vNk -fno -wiE -jJv -rtz -dfI -yhi -qHj -yhi -asx -jCU -jwM -jwM -ild -ild -uKS -jwM -tLr -phZ -jmG -jmG -hkO -ycg -fWG -uwT -uwT -ixP -tKe -uwT -uwT -cpy -cpy -fWG -fWG -fWG -fWG -fWG -fWG -fWG -aru -jas -pPM -nbE -vpe -oKe -xcX -kwj -tNl -tNl -tNl -tNl -tNl -tNl -tNl -dDB -njm -qup -iiK -jas -jas -cpy -cpy -bMX -"} -(114,1,1) = {" -bMX -cpy -cpy -cpy -tiQ -tiQ -cEh -aLJ -aLJ -dFT -aLJ -iZI -iZI -dDS -iZI -iZI -aLJ -fAb -ftX -hKa -nTl -nTl -qXi -gak -ebu -foq -avg -ygQ -ygQ -ygQ -dAe -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -vjl -vjl -vjl -bQI -bQI -efB -djy -csV -qjG -qjG -tgE -cEg -oCQ -oCQ -oDW -cPo -lIi -xQc -xQc -xVJ -bkm -bCv -nmQ -rUU -tiQ -bjd -pqQ -lYK -hvh -qEQ -jCi -mPj -kAp -idh -oDQ -jCi -bjd -mPj -mPj -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -svK -qSH -vmq -umR -vlM -wKg -wKg -xjF -xjF -xjF -xjF -agT -vcU -xjF -xjF -xjF -xjF -sjy -sjy -sjy -urW -bit -xUJ -cWz -fiZ -cBp -sjy -sjy -tpa -tpa -tpa -tpa -tpa -sjy -sjy -kqb -kqb -brK -oUK -kqb -kqb -kqb -kqb -kqb -flN -try -trI -dQb -try -dQb -kqb -kqb -fFH -rnB -rnB -tTD -cpy -cpy -tTD -tTD -rsw -vNk -vNk -sVD -kuD -xMO -xMO -xMO -ekO -ekO -wGh -iZT -vNk -vNk -vNk -dOj -yhi -eWc -dfk -qTB -grP -xNd -xNd -cIo -rns -ldC -xcF -ldC -xcF -taP -ojy -uqP -wjF -ovX -jmG -jmG -sWa -fWG -uwT -uwT -ixP -tKe -fWG -cpy -cpy -uje -fWG -fWG -fWG -dWD -fWG -fWG -fWG -vgz -jas -uRh -xKH -vpe -wwc -vpe -vpe -ghM -ghM -ghM -ghM -aIv -ghM -ghM -jas -cwv -jas -jas -jas -cpy -cpy -cpy -bMX -"} -(115,1,1) = {" -bMX -cpy -cpy -tiQ -tiQ -cEh -cEh -aLJ -aLJ -iZI -iZI -iZI -iZI -cHj -azz -azz -eFP -vsz -otB -hKm -iIc -iIc -jnD -gak -ebu -foq -pMD -tiQ -tiQ -tiQ -dAe -ygQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -vjl -vjl -vjl -vjl -vlq -wLN -mxc -bvO -qjG -lIi -lIi -dfD -wLN -wLN -gMf -mxc -lIi -lIi -xQc -gxS -aXu -bCv -djy -inH -tiQ -bjd -pqQ -lYK -hvh -nWH -jCi -lKL -lKL -stL -stL -jCi -jCi -jCi -bjd -mPj -cpy -cpy -cpy -cpy -cpy -ien -iqb -kdx -vGp -xEd -umR -uRz -umg -xjF -xjF -vqq -xKj -xjF -giX -giX -iMw -jzC -mSa -xjF -xjF -sjy -sjy -sjy -sjy -ptl -pCj -sjy -sjy -sjy -qiQ -ulZ -ulZ -ulZ -ulZ -twY -ulZ -ulZ -pKX -sys -hlq -diO -sys -pKX -lVu -xXg -kqb -kqb -wxo -sWQ -aEf -aTy -kqb -kqb -xXg -qaK -rnB -tTD -tTD -cpy -cpy -tTD -tTD -rsw -qif -sCr -uew -xMO -xMO -xMO -yfX -ozn -xMO -xMO -xMO -tjj -wpn -ujP -wJH -wEW -eWc -sLG -eWc -wiE -wiE -oWN -asx -jCU -jwM -ild -biV -ujR -vVS -jwM -ild -ild -biV -tZf -jmG -ePg -fWG -uwT -uwT -ixP -fBR -fWG -fWG -fWG -fWG -fWG -fWG -fWG -hMN -fWG -xbM -fWG -xzK -jas -jfh -eso -vpe -xFv -eso -ghM -ghM -jas -jas -jas -jas -jas -jas -jas -nQu -jas -jas -cpy -cpy -cpy -cpy -bMX -"} -(116,1,1) = {" -bMX -cpy -cpy -tiQ -xvu -cEh -aLJ -aLJ -iZI -iZI -iZI -iZI -iZI -dDS -iZI -iZI -svW -ebu -dAe -jBM -kHh -jBM -jBM -gak -ebu -iZI -avg -ygQ -ygQ -ygQ -dAe -ygQ -saC -saC -saC -saC -saC -saC -saC -thU -thU -thU -saC -saC -dxc -ntq -qjG -djy -csV -xsa -inH -vLg -sYm -oCQ -oCQ -oCQ -hBY -fZz -hYM -yhz -inH -aXu -bCv -qjG -hKK -tiQ -bjd -nWH -lYK -hvh -eTQ -gwX -woU -woU -woU -woU -mQK -jCi -jCi -jCi -mPj -cpy -cpy -cpy -cpy -cpy -ien -isa -svK -sRI -xEd -umR -qSH -hzx -xjF -jXb -uAr -wsK -xjF -vHT -uog -uog -xBo -nnz -oVD -xjF -xFp -xZP -vcT -lWH -xVa -gNJ -sys -vcT -ulZ -ulZ -ulZ -fQr -gzc -pmJ -jZc -wIE -ulZ -vcT -sys -djM -xAZ -sys -vcT -lVu -xXg -wIi -kqb -kqb -vON -vON -kqb -kqb -wIi -qaK -rnB -rnB -tTD -tTD -cpy -tTD -tTD -rnB -qqo -pSN -oGZ -uNd -xFG -uNd -xFG -xFG -rKW -uNd -oaH -xMO -aBB -wpH -wFZ -wGJ -wiE -wiE -wYe -yhi -yhi -wiE -wsa -jmG -wVn -jwM -ild -biV -ujR -vVS -ild -uqP -wjF -ovX -sLh -jmG -ePg -fWG -uwT -uwT -fWG -wVo -jBG -flY -wcb -wcb -flY -flY -wvi -flY -flY -flY -flY -jas -jas -pEr -ghM -eso -xFv -uhv -ghM -jas -jas -kUR -eCt -jas -nHw -lqz -jas -nQu -uTY -jas -cpy -cpy -cpy -cpy -bMX -"} -(117,1,1) = {" -bMX -cpy -tiQ -tiQ -cEh -aLJ -aLJ -iZI -iZI -ccN -cwO -cwO -cKQ -cUg -iZI -dHj -vNr -ebu -ror -jBM -jBM -jBM -jBM -gak -ebu -jBM -avg -ygQ -ygQ -ygQ -dAe -ygQ -rup -saC -tiQ -saC -saC -saC -saC -tiQ -saC -saC -saC -saC -saC -vjl -qjG -djy -csV -vRP -inH -bkm -oCQ -oCQ -oCQ -oCQ -ctF -fty -hYM -aiO -vcx -hxs -xqP -fty -pAw -tiQ -bjd -dKG -abL -iCs -hNP -hNP -hNP -hNP -hNP -vFD -uJy -mQK -jCi -jCi -mPj -cpy -cpy -cpy -cpy -ien -ien -ien -ruv -ilU -xEd -umR -qSH -hzx -xjF -xjF -xjF -niZ -xjF -gCO -ujv -wgW -wgW -jRT -jRT -dBG -xFp -xZP -vcT -lWH -xAZ -qeT -sys -vcT -ulZ -ulZ -wIE -eOv -ofT -tte -hre -oTY -ulZ -vcT -lWH -xOw -ykT -lWH -vcT -lVu -xXg -kXD -kXD -kXD -kXD -kXD -kXD -kXD -qaK -rnB -rnB -rnB -tTD -tTD -cpy -tTD -tTD -rnB -lZZ -vNk -vNk -xEW -xMO -ozn -xMO -xMO -xMO -nFN -tQb -mHv -xeC -wpH -wFZ -wiE -wiE -wiE -wly -yhi -wiE -wEW -amT -blz -jCU -ild -jwM -biV -biV -vVS -ild -ild -ild -biV -jmG -jmG -idI -uwT -uwT -uwT -fWG -ebg -xzK -jas -jas -jas -jas -jas -jas -jas -jas -jas -jas -jas -jas -jas -gDu -eso -mYS -fnm -knJ -jas -aSO -lqz -lqz -jas -hOt -lqz -jas -nQu -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(118,1,1) = {" -bMX -cpy -tiQ -dMh -uqk -aLJ -dFR -azz -azz -azz -azz -cFR -cKS -eJw -iZI -iZI -fib -ebu -dAe -jBM -jBM -jBM -jBM -gak -ebu -jBM -avg -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -tiQ -tiQ -saC -saC -saC -saC -tiQ -saC -saC -saC -saC -qjG -qjG -oCQ -djy -csV -wCQ -inH -vhm -oDW -oCQ -oCQ -oCQ -djy -saC -saC -xQc -bUF -gmd -csV -inH -inS -tiQ -bjd -dKG -jCi -abL -qsW -qsW -qsW -cgn -mqx -jZE -pMa -pqQ -nLO -oDQ -mPj -cpy -cpy -cpy -cpy -cpy -ien -iel -iel -iel -xEd -pZo -qSH -hzx -xjF -pTJ -eHy -vSU -xjF -xsd -xCN -xPW -wgW -jRT -lol -dBG -xFp -xZP -vcT -sys -xAZ -djM -lWH -vcT -ulZ -wIE -eKm -lWD -jOb -vjV -wIE -bWA -ulZ -vcT -lWH -xOw -ykT -lWH -vcT -lVu -fFH -tTD -sKJ -sKJ -tTD -tTD -tTD -tTD -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -rnB -rnB -lZZ -xXg -vNk -vNk -xOa -meN -mnT -guT -tgz -mRy -gFs -pDU -pxO -vNk -pJb -eKJ -cDd -pwu -wly -wiE -taw -orR -oEj -jmG -jCU -ild -jwM -okA -bbd -kyB -xcF -xcF -jkC -jmG -jmG -ifx -oYC -uwT -uwT -uwT -fWG -oEG -jas -jas -jvP -miT -mjN -hgp -pYI -pPM -plB -eou -gDu -gDu -xcP -gXO -vpe -tJN -rNv -cYE -knJ -aAI -ctS -lqz -yhf -jas -jas -adm -jas -rmp -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(119,1,1) = {" -bMX -cpy -tiQ -oKu -iZI -bNE -dDS -iZI -fFw -iZI -cxu -cGY -hgy -iZI -iZI -iZI -aLJ -ebu -dAe -lQW -ygQ -iBh -wNz -gak -ebu -jBM -avg -tiQ -tiQ -tiQ -apG -ygQ -ygQ -tiQ -saC -saC -saC -saC -saC -tiQ -iWL -saC -qjG -qjG -oCQ -oCQ -oCQ -ndz -ckh -vRP -mnw -qjG -oCQ -oCQ -oCQ -oCQ -saC -saC -tiQ -tiQ -tiQ -seF -srj -qJY -yhz -tiQ -bjd -eTQ -udX -kbb -pMz -yaH -sVr -lYK -mqx -mqx -mfJ -pqQ -nLO -oDQ -mPj -cpy -cpy -cpy -cpy -cpy -ien -iel -iel -iel -xEd -pZo -vGp -hzx -xjF -vuc -wgW -jBw -xjF -ddM -wgW -jiP -wgW -ydb -qrS -dBG -xFp -xZP -vcT -sys -ykT -djM -sys -vcT -ulZ -ulZ -ulZ -ulZ -ulZ -ulZ -ulZ -ulZ -ulZ -vcT -uKn -xOw -xAZ -sys -vcT -lVu -fFH -tTD -sKJ -tTD -tTD -tTD -tTD -rnB -rnB -cpy -rnB -rnB -tTD -tTD -tTD -tTD -rnB -rnB -lZZ -xXg -vNk -vNk -vJD -vJD -vNk -vNk -vNk -vNk -vdq -ugU -vNk -vNk -vNk -vNk -vNk -mFA -eur -cqb -rgG -jmG -jmG -jmG -jmG -asx -asx -jmG -jmG -asx -asx -jmG -jmG -jmG -xzK -oxO -uwT -uwT -uwT -uwT -fWG -oEG -jas -vOk -vpe -vpe -vpe -vpe -qQQ -nbE -rQB -vpe -fhl -ijR -ijR -xHL -myE -hvD -kjj -naH -kwj -eQL -daU -qzN -lqz -yhf -lqz -jfF -jas -wFC -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(120,1,1) = {" -bMX -cpy -tiQ -cEh -ffM -azz -aZD -iZI -iZI -iZI -clf -cHj -frH -ciS -iZI -iZI -fFp -foq -nTl -nTl -nTl -nTl -nTl -nTl -ygQ -jBM -avg -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -tiQ -saC -saC -saC -saC -saC -tiQ -hOz -inH -vjU -nct -mPu -roZ -uOe -wsg -mtl -xvz -ugN -pHT -wZT -oCQ -oCQ -oCQ -djy -hYM -pQw -vTZ -pQw -inH -csV -inH -gCJ -lTi -bjd -bjd -pQF -skc -bjd -oid -cPH -lYK -mqx -mqx -mfJ -pqQ -nLO -oDQ -mPj -cpy -cpy -cpy -cpy -ien -ien -ien -khG -isa -xEd -pZo -vGp -hzx -xjF -dFn -wWe -jBw -xjF -wZl -gcO -wgW -wgW -ydb -xRQ -xjF -xFp -xZP -pKX -pKX -vXS -jBS -pKX -pKX -ojp -bSi -bSi -bSi -ojp -bSi -bSi -bSi -ojp -pKX -pKX -olL -dqZ -pKX -pKX -lVu -fFH -tTD -tTD -tTD -tTD -tTD -tTD -rnB -cpy -cpy -cpy -rnB -rnB -tTD -rnB -rnB -rnB -rnB -lZZ -vNk -vNk -vdZ -urd -tvv -vdZ -vNk -uHq -gAC -ngx -xMO -vNk -eFX -feo -hIb -vNk -xvl -jVT -cRg -xvl -xvl -jmG -jmG -jmG -xzK -xzK -jmG -jmG -xzK -xzK -jmG -jmG -xzK -oxO -uwT -uwT -uwT -uwT -uwT -fWG -oEG -gXO -vpe -eso -vpe -vpe -eso -vpe -vpe -eso -eso -vjr -eso -eso -gXO -eso -eso -ipw -vpe -gDu -aAI -lqz -eUg -vmJ -lqz -lqz -rkb -jas -bWv -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(121,1,1) = {" -bMX -cpy -tiQ -jEu -cEh -svW -svW -ebu -ebu -ebu -ebu -ffM -ebu -bKR -quh -cEh -foq -foq -nTl -nTl -nTl -nTl -nTl -nTl -ygQ -ygQ -avg -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -tiQ -tiQ -saC -saC -saC -saC -tiQ -jEu -inH -xYD -fxh -kBF -saC -dLj -jTD -inH -saC -saC -qjG -yaj -oCQ -npz -oCQ -twU -jCH -pQw -xVJ -naP -jTD -mif -fZz -xVJ -qjG -lTi -bjd -ltr -nWH -bjd -bjd -bjd -lYK -mqx -mqx -mfJ -pqQ -nLO -oDQ -mPj -cpy -cpy -cpy -cpy -cpy -ien -ssh -tNQ -vGp -xEd -pZo -vGp -hzx -xjF -xjF -vwl -fUx -kVe -wZw -ydb -jll -jRT -jRc -xjF -xjF -xFp -xZP -pKX -mVd -ykT -kGb -ore -pKX -vwS -qVG -cui -bPE -ojp -bPE -iek -cui -qVG -pKX -cnn -kcd -oig -dWJ -pKX -lVu -fFH -tTD -tTD -tTD -tTD -tTD -rnB -cpy -cpy -cpy -cpy -rnB -veS -scr -vSi -rnB -rnB -rnB -lZZ -vNk -pZA -tGo -tGo -tGh -cbW -vNk -pOv -ikZ -vYL -ozn -vNk -aWb -ozn -pUo -hIb -xvl -ycm -bCV -xvl -xvl -teD -xzK -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -oxO -uwT -uwT -cpy -cpy -uwT -uwT -fWG -bEq -nNC -kwj -xcX -nyJ -lWf -tNl -kwj -lWf -lWf -lWf -cxo -vpe -gDu -gXO -ghM -gDu -xFv -mZr -gDu -jas -dMs -qPG -suc -cIM -wWY -jas -jas -bWv -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(122,1,1) = {" -bMX -cpy -cpy -oKn -nRl -lcF -mwd -mwd -mwd -mwd -mwd -fPk -mwd -esc -oPy -cmJ -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -avg -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -tiQ -nWS -xYD -csV -oRP -saC -saC -iix -jfp -saC -saC -myV -yaj -qjG -oCQ -oCQ -djy -svg -naP -inH -naP -inH -qpJ -djy -vDw -iqc -qjG -bjd -ltr -nWH -bjd -fSf -cZH -rQk -mqx -mKC -mfJ -nWH -jCi -jCi -mPj -cpy -cpy -cpy -cpy -cpy -ien -dto -dCc -dCc -xEd -uoI -vGp -jNB -xFp -xjF -xjF -xjF -xjF -xjF -xjF -xjF -xjF -xjF -xjF -xFp -bKj -xZP -buu -xAZ -xAZ -xOw -ykT -fjQ -alC -mSe -nYF -mSe -bpz -mSe -nDn -hYV -mZA -fjQ -xAZ -qqx -pag -bia -buu -lVu -fFH -rnB -tTD -tTD -tTD -cpy -cpy -cpy -cpy -cpy -cpy -rnB -bKL -oSz -iQz -tTD -rnB -rnB -lZZ -vJD -tGh -uUk -wuX -ugR -tGh -vNk -gyb -xMO -tQb -eTU -vNk -eFX -xMO -tQb -eyN -xvl -nWh -ykk -xvl -xvl -rSF -nMy -fWG -fWG -fWG -fWG -fWG -fWG -uwT -sag -quw -uwT -xRn -ybj -cpy -cpy -uwT -uwT -uwT -aru -gXO -vpe -vpe -wwc -vpe -vpe -eso -eso -vpe -eso -vpe -gDu -jas -jas -jas -jas -rpa -jas -jas -jas -jas -jas -jas -jas -jas -jas -hra -nQu -aEF -jas -cpy -cpy -cpy -cpy -bMX -"} -(123,1,1) = {" -bMX -cpy -cpy -oKn -ebu -exx -jBM -sgV -jBM -jBM -jBM -jBM -tZk -bOP -tZk -jav -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -pZm -mwd -mwd -mwd -wde -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -xQc -efI -xYD -oHf -saC -saC -ncA -olX -rwH -saC -jfp -qOs -lNA -prt -qjb -prt -iAm -mWC -uge -lpw -uge -lpw -jXL -hBY -fZz -qjG -qjG -bjd -jCi -pqQ -bjd -fSf -cZH -mqx -mqx -mqx -mfJ -pqQ -nLO -oDQ -mPj -cpy -cpy -cpy -wDj -wDj -wDj -pFl -pFl -wDj -wDj -jDC -vGp -vGp -jNB -bKj -bKj -qqU -bKj -nDg -wGT -bKj -xxD -bKj -trf -pYt -qSH -xGy -gKm -ykT -axD -kGb -vKe -cxG -sbN -dbF -mHC -mSZ -pBm -aXx -mSZ -rsX -fDx -cxG -qtx -mTK -sdC -dvp -gKm -lVu -fFH -rnB -rnB -tTD -tTD -cpy -cpy -cpy -cpy -cpy -cpy -rnB -owi -fAV -sOp -tTD -rnB -rnB -lZZ -vJD -tGh -pBK -iEN -pTZ -tGh -vNk -nYW -vkD -ngx -mZp -gPe -iEx -qDw -ngx -meN -gPe -xgA -bsG -jZR -jLH -oqZ -nMy -fWG -fWG -fWG -fWG -fWG -fWG -uwT -uwT -xxk -yjK -iwV -uwT -uwT -cpy -uwT -uwT -uwT -aru -jas -ghM -gDu -qJB -gDu -vpe -vpe -eso -eso -vpe -eou -jas -jas -cEj -ncJ -myE -qHr -vpe -vxa -ePb -bWv -bWv -nQu -nQu -nQu -nQu -nQu -nQu -haF -jas -cpy -cpy -cpy -cpy -bMX -"} -(124,1,1) = {" -bMX -cpy -cpy -oKn -vMf -aui -ygQ -ygQ -ygQ -ygQ -ygQ -ygQ -hCe -sMd -nKd -foq -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -cbI -lBG -hYc -lBG -lBG -lBG -fIZ -saC -saC -saC -saC -saC -saC -saC -xQc -inH -inH -csV -kFo -saC -sZO -jCs -rtg -rtg -iix -csV -bkm -oCQ -oCQ -gMf -aMh -lIi -naP -inH -naP -xVJ -bkm -oCQ -mGV -xVJ -vKP -bjd -jCi -pqQ -bjd -fSf -jgF -qsW -qsW -qsW -eqw -pqQ -nLO -oDQ -mPj -cpy -cpy -wDj -nJV -tWq -nyz -lAz -vAz -cJI -wDj -qcq -vGp -vGp -vGp -vGp -vGp -qqU -vGp -vxg -vGp -vGp -aAN -qSH -qSH -qSH -qSH -xGy -pKX -fti -ykT -djM -cyR -pKX -vwS -pRo -vwS -cui -ojp -sot -cui -xYB -vwS -pKX -mHr -gNn -mgb -rvc -pKX -lVu -fFH -rnB -rnB -tTD -tTD -tTD -cpy -cpy -cpy -cpy -cpy -rnB -rnB -tTD -tTD -rnB -rnB -rnB -lZZ -vJD -tGo -ugR -prX -pTZ -tGh -vNk -xMO -xMO -kwK -mMy -pSN -nUy -hIx -nNM -joF -pSN -aSZ -acE -jZR -jLH -oqZ -nMy -fWG -fWG -cpy -cpy -fWG -fWG -uwT -uwT -xbk -iUk -ixP -uwT -uwT -uwT -uwT -uwT -uwT -aru -jas -jas -jas -jas -jas -hyk -vpe -vpe -eso -vpe -upC -jas -cEj -vpe -vpe -vpe -eso -vpe -ahZ -jas -jas -mwn -xxz -pYO -pYO -afa -afa -nUF -jas -jas -cpy -cpy -cpy -cpy -bMX -"} -(125,1,1) = {" -bMX -cpy -cpy -oKn -tzh -eer -ygQ -ygQ -rup -pPS -ygQ -wrx -eBi -cUl -dhX -iQw -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -foq -foq -ygQ -ygQ -ygQ -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -xQc -vRP -vRP -srj -jfp -xYL -uiY -xYD -hhG -rtg -cue -csV -bkm -oCQ -oCQ -oCQ -mxc -inH -naP -inH -naP -tPh -bkm -oDW -djy -gZw -qjG -bjd -jCi -pqQ -bjd -bjd -bjd -ltr -ltr -ltr -jCi -pqQ -nLO -oDQ -mPj -cpy -cpy -wDj -lYn -ezo -eJR -iDH -eJR -sxY -ecv -oLc -vGp -vGp -vGp -vGp -vGp -qqU -nUO -hqZ -vGp -qSH -kdm -rMR -qSH -qSH -vGp -xGy -pKX -pKX -mCj -bzg -pKX -pKX -ojp -bSi -bSi -bSi -ojp -bSi -bSi -bSi -ojp -pKX -pKX -goh -swH -pKX -pKX -lVu -fFH -rnB -rnB -tTD -tTD -tTD -tTD -tTD -tTD -cpy -rnB -rnB -sKJ -tTD -tTD -rnB -rnB -rnB -lZZ -vJD -tGo -tCL -vmG -pTZ -cbW -vNk -hAy -xMO -ngx -bkr -vNk -vNk -vNk -vNk -vNk -xvl -pjn -aIk -xvl -xvl -oqZ -nMy -fWG -cpy -uwT -uwT -uwT -uwT -uwT -uwT -fWW -tlr -elq -uNg -uwT -uwT -uwT -uwT -uwT -xRU -lxC -lxC -lxC -xzK -jas -jas -tVz -vpe -eso -gRi -eou -jas -bRq -vpe -bRq -eso -bRq -vpe -dTj -jas -jas -jas -jas -nQT -jas -jas -jas -jas -jas -cpy -cpy -cpy -cpy -cpy -bMX -"} -(126,1,1) = {" -bMX -cpy -cpy -oKn -aat -dAe -jBM -jBM -jBM -pwm -jBM -jBM -rIt -vhP -fmd -uey -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -dqe -gZa -gZa -fvj -aVB -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -xQc -kKB -inH -csV -jfp -cQN -mli -wgi -kgo -iRW -jfp -eKO -bkm -oCQ -oCQ -oCQ -mxc -inH -pQw -vEp -naP -tPh -rEQ -jei -fty -hOz -lTi -bjd -jCi -uJy -gwX -bSz -mZg -bLf -bLf -bLf -jCi -pqQ -nLO -mPj -mPj -mPj -mPj -wDj -sNg -eJR -kbH -iHD -ksk -hVZ -hYv -nsF -qSH -vGp -vGp -vGp -vGp -qqU -nWq -vGp -qSH -qSH -qSH -qSH -qSH -vGp -vGp -xGy -vcT -lWH -ykT -xOw -lWH -vcT -fkj -fkj -fkj -fkj -fkj -fkj -fkj -fkj -fkj -vcT -jhy -iGn -uOp -wHV -vcT -lVu -fFH -rnB -rnB -rnB -sKJ -tTD -tTD -tTD -tTD -rnB -rnB -rnB -rnB -rnB -tTD -rnB -tTD -rnB -lZZ -vNk -qfK -wjf -wjf -uNp -tGo -wcI -xMO -eZM -hZL -meN -vNk -vNk -cgg -eyN -vNk -xvl -wsL -bXW -xvl -xvl -oqZ -nMy -dBD -sps -sps -sps -sps -sps -jhQ -uwT -uwT -ybj -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -xzK -jas -qYZ -vpe -eso -eso -eou -jas -dTj -oJj -dTj -eFb -bRq -eso -dTj -jas -ctE -jas -aEF -nQu -wFC -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(127,1,1) = {" -bMX -cpy -cpy -oKn -wzk -mKf -fvj -fvj -fvj -fvj -fvj -fvj -fvj -ouR -rGO -fvj -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -epr -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -saC -saC -saC -saC -saC -saC -saC -tiQ -oLq -xYD -iSl -jfp -jfp -kim -pZh -pxu -jfp -jfp -csV -bkm -hNH -oCQ -ctF -rja -dLT -pQw -cwI -naP -ntC -xVJ -ngW -ntC -geL -tiQ -bjd -rqx -ltr -ltr -rDc -nWH -bLf -bLf -bLf -jCi -nWH -jCi -jCi -jCi -bjd -bjd -mPj -iLm -ftd -lTd -iJE -bFl -tez -wDj -lWC -qSH -qSH -vGp -vGp -vGp -qqU -tkL -vGp -qSH -qSH -qSH -qSH -qSH -vGp -vGp -xGy -vcT -lWH -xAZ -djM -sys -vcT -fkj -mtI -mHU -fQr -gzc -pmJ -bWd -jHi -fkj -vcT -svT -sAp -vHw -ohJ -vcT -lVu -fFH -rnB -sKJ -sKJ -sKJ -tTD -tTD -tTD -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -rnB -rnB -onR -vNk -xHr -xez -xez -xez -veT -hQR -uQr -ngb -hMT -nUy -aFp -joF -qAt -uwX -vNk -jZR -xhD -acE -jZR -jLH -oqZ -nMy -qjO -ylo -ylo -ylo -ylo -ylo -ivy -uwT -xRn -uwT -uwT -ybj -uwT -uwT -uwT -jBG -flY -flY -flY -flY -flY -xzK -xzK -jas -jas -gXO -gXO -gXO -jas -jas -jas -jas -jas -jas -jas -jas -jas -jas -ctE -jas -kFd -nQu -jwO -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(128,1,1) = {" -bMX -cpy -tiQ -jEu -wzk -svW -svW -dzw -ebu -ebu -ebu -ebu -ebu -bKR -gak -ebu -ygQ -ygQ -nTl -nTl -nTl -nTl -nTl -nTl -foq -ygQ -gak -ygQ -ygQ -ygQ -xOi -ygQ -ygQ -hOy -saC -saC -saC -saC -saC -tiQ -jEu -inH -xYD -iSl -inH -jfp -jfp -iix -jfp -jfp -nyD -csV -vhm -npz -oCQ -djy -saC -saC -tiQ -tiQ -tiQ -seF -vRP -qJY -seF -tiQ -tiQ -bjd -nEM -xKA -jCi -bjd -dKG -bLf -bLf -bLf -bLf -pQl -mov -mov -mov -xdK -aHQ -mPj -hId -axN -eJR -jEN -wDj -wDj -wDj -tcd -xSv -xSv -xSv -lTV -lTV -cEr -lTV -dCY -qSH -qSH -qSH -qSH -vGp -vGp -vGp -xGy -vcT -sys -xAZ -xOw -uBt -vcT -gUi -jHi -fkj -eOv -ofT -tte -mHU -fkj -fkj -vcT -lWH -xOw -snb -pBv -vcT -lVu -xXg -cUb -cUb -cUb -cUb -cUb -cUb -cUb -cUb -rnB -rnB -rnB -rnB -tTD -tTD -tTD -rnB -rnB -lZZ -vNk -qfK -uNp -uNp -ugR -tGh -wcI -cct -gbm -ozn -iEx -vNk -hmY -chR -dww -vNk -gFl -xgA -acE -jZR -jLH -oqZ -nMy -qjO -ylo -bnL -ygE -dYM -ylo -yaf -uwT -fWG -uFz -uwT -uwT -uwT -uwT -uwT -aru -uzI -dDq -dDq -uzI -dDq -dDq -uzI -uzI -uzI -ybz -qQx -qQx -qQx -cpy -cpy -cpy -cpy -abo -ctE -ctE -ctE -ctE -ctE -jas -wFL -nQu -hbO -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(129,1,1) = {" -bMX -saC -tiQ -hxm -ffM -azz -azz -azz -azz -ciS -iZI -iZI -iZI -dDS -fFw -iZI -iZI -ygQ -nTl -nTl -nTl -nTl -nTl -nTl -ygQ -jBM -gak -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -tiQ -saC -saC -saC -saC -saC -tiQ -kKB -inH -xYD -fxh -ntC -vRP -jKs -inH -inH -inH -inH -mif -vVm -saC -saC -saC -saC -tiQ -tiQ -kIf -xVJ -xVJ -inH -inH -nYl -tiQ -tiQ -bjd -beH -beH -bjd -bjd -pXQ -qtU -bLf -bLf -bLf -bLf -bLf -bLf -bLf -lBy -wYG -bSz -lAa -gjA -sxY -wDj -wDj -xFp -xFp -jDC -qSH -qSH -qSH -qSH -vGp -qqU -vGp -umR -qSH -qSH -qSH -qSH -vGp -vGp -wqp -xZP -vcT -lWH -fti -avF -lWH -vcT -fkj -fkj -mHU -lWD -jOb -vjV -fkj -mtI -fkj -vcT -sys -lnn -xAZ -lWH -vcT -lVu -xXg -wIi -tTK -tTK -tTK -tTK -tTK -tTK -xXg -nXi -rnB -rnB -cpy -rnB -rnB -tTD -rnB -rnB -lZZ -vJD -tGh -uNp -uNp -tSN -dsu -vNk -hAy -xMO -ozn -iEx -vNk -iny -ozn -meN -vNk -xvl -iZt -aIk -xvl -xvl -oqZ -nMy -qjO -ylo -dYM -ttC -bnL -ylo -mkm -uwT -fWG -uwT -uwT -pLu -uwT -uwT -uwT -aru -tfI -wzj -wzj -oIJ -oIJ -oIJ -pkS -gyi -tos -tpr -wQa -wQa -wQa -wQa -cpy -cpy -abo -ctE -ctE -ctE -ctE -ctE -ctE -jas -wFL -nQu -fZA -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(130,1,1) = {" -bMX -saC -saC -saC -aLJ -iZI -iZI -iZI -iZI -dDS -fFw -iZI -iZI -dDS -iZI -iZI -iZI -ebu -dAe -nEZ -foq -foq -qcR -gak -ebu -wIO -gak -tiQ -tiQ -tiQ -dAe -ygQ -ygQ -tiQ -saC -saC -saC -saC -saC -tiQ -kKB -vLg -sCJ -lwu -pEs -xvz -lIs -pEs -hzX -vtG -vtG -pHq -oCQ -oCQ -saC -saC -saC -tiQ -hti -uXR -vLg -sCJ -sCJ -fZz -sJl -hPG -tiQ -bjd -nYa -owO -bjd -bjd -noq -qJn -qtU -bLf -bLf -bLf -bLf -bLf -bLf -eQo -avV -rDc -iJE -gok -sxY -pFl -xgQ -frh -coZ -jDC -qSH -qSH -qSH -vGp -vGp -qqU -qSH -umR -qSH -qSH -qSH -vGp -vGp -wqp -xFp -pKX -pKX -pKX -sNl -kwO -pKX -pKX -pKX -fkj -fkj -fkj -fkj -fba -fkj -fkj -fkj -pKX -sys -fLN -cyR -lWH -pKX -lVu -xXg -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -gjt -nXi -cpy -cpy -rnB -rnB -tTD -rnB -sKJ -lZZ -vJD -fMP -uNp -uOD -uOj -vfj -vNk -bXO -xMO -ozn -opA -vNk -qCN -ddK -pmT -vNk -xvl -xrL -eYn -xvl -xvl -oqZ -nMy -qjO -jOF -hDn -pLs -qQq -ylo -mkm -uwT -oTD -ycM -miZ -tXW -uwT -uwT -uwT -aru -tfI -wzj -hWg -hWg -xPH -hWg -pkS -gyi -tos -tpr -wQa -wQa -wQa -wQa -wQa -cpy -abo -ctE -ctE -ctE -ctE -ctE -ctE -jas -jGe -nQu -dLC -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(131,1,1) = {" -bMX -saC -saC -gxT -bkR -aLJ -aLJ -iZI -iZI -dDS -iZI -cIr -iZI -eOe -iZI -iZI -fFw -ebu -dAe -jBM -izM -izM -izM -gak -ebu -jBM -gak -ygQ -ygQ -ygQ -dAe -ygQ -ygQ -tiQ -tiQ -saC -saC -saC -saC -tiQ -inH -bkm -oCQ -djy -inH -vRP -jKs -inH -vti -oCQ -oCQ -bCv -oCQ -oCQ -oCQ -saC -saC -tiQ -nCP -cFO -bWo -tqR -tza -hBY -fZz -ldI -tiQ -bjd -nYa -owO -nYa -bjd -bjd -ltr -pQl -mov -gnl -gnl -gnl -mov -mov -cbV -nTK -mPj -sxY -iJE -sxY -pFl -qho -cJL -frs -jDC -qSH -qSH -vGp -vGp -wqp -qqU -dCc -cVp -sCI -dCc -dCc -dCc -dCc -xFp -tDS -tDS -xKl -gCm -lIh -pNE -jDg -cUs -tDS -dPt -dPt -tDS -tDS -dPt -dPt -tDS -gdO -gdO -gdO -gHe -kZi -gdO -gdO -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -fFH -rnB -cpy -cpy -rnB -tTD -tTD -tTD -lZZ -vJD -qdS -ugR -uNp -uOD -tGo -vNk -vwH -xMO -ozn -meN -vNk -iny -kSs -pmT -vNk -dfR -xhD -bsG -dfR -jLH -oqZ -nMy -qjO -ylo -nHB -mGi -nHB -ylo -syB -uwT -xbk -mRx -psQ -fWG -uwT -uwT -uwT -aru -icc -wzj -hWg -hWg -acp -hWg -pkS -gyi -tos -tpr -wQa -wQa -wQa -wQa -wQa -cpy -cpy -ctE -ctE -ctE -ctE -ctE -ctE -jas -jGe -nQu -nQu -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(132,1,1) = {" -bMX -saC -saC -saC -gxT -aLJ -aLJ -aLJ -aLJ -dDS -iZI -iZI -iZI -dDS -fpn -iZI -oim -ebu -dAe -jBM -jBM -izM -fAo -fnI -fAb -izM -gak -ygQ -ygQ -ygQ -xOi -ygQ -ygQ -izM -tiQ -saC -saC -saC -tiQ -tiQ -vjl -bkm -oCQ -djy -gid -tiQ -tiQ -efI -wHc -oCQ -oCQ -bCv -oCQ -oCQ -oCQ -djy -inH -idX -vJB -sEs -vLg -fbT -jRh -fZz -bCJ -nVD -vKP -bjd -ltr -oDQ -ltr -bjd -bjd -ltr -bLf -bLf -bLf -bLf -ltr -ltr -ltr -bjd -bjd -mPj -cCY -sxY -wEU -wDj -gRy -fax -uPl -jDC -qSH -vGp -vGp -wqp -xFp -tDS -tDS -jaS -dPt -tDS -dPt -dPt -tDS -tDS -tDS -blO -dBR -jVR -xDM -lwW -pDI -gCm -kfI -lyN -lyN -tDS -imf -qPY -dZc -arf -gdO -cBj -smt -qjl -aAj -gwe -jww -tTK -qZs -kUG -lMf -fRm -tTK -ujw -lrg -uBQ -tTK -tTK -fFH -rnB -cpy -cpy -tTD -tTD -tTD -tTD -lZZ -vJD -xcJ -ugR -uNp -uNp -tGh -vNk -fko -xMO -xMO -meN -urv -meN -xMO -iEx -vNk -dfR -xhD -bsG -jZR -jLH -oqZ -nMy -qjO -ylo -ylo -vpJ -ylo -ylo -syB -uwT -qTI -fss -noT -fWG -uwT -uwT -uwT -aru -uzI -oIJ -hWg -wyz -acp -xPH -pkS -gyi -tos -tpr -wQa -wQa -wQa -wQa -wQa -cpy -cpy -abo -ctE -ctE -ctE -ctE -ctE -jas -lYG -nQu -hcO -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(133,1,1) = {" -bMX -saC -saC -saC -saC -gxT -aLJ -aLJ -dFT -cmB -azz -azz -cMc -cVy -iZI -dJs -svW -ebu -dAe -jBM -jBM -jBM -jBM -gak -ebu -foq -gak -ygQ -ygQ -ygQ -dAe -ygQ -foq -izM -saC -saC -saC -saC -saC -saC -saC -saC -oCQ -saC -saC -tiQ -tiQ -inH -bkm -oCQ -bWF -laN -oCQ -oCQ -lbC -djy -ntC -eFO -inH -bkm -goB -lmY -lmY -gyU -djy -inH -qjG -bjd -ltr -jCi -jCi -nYa -bjd -ltr -bLf -bLf -bLf -ltr -wDj -wDj -wDj -wDj -wDj -wDj -pFl -ghJ -pFl -wDj -xFp -xFp -bKj -iGI -vGp -vGp -vGp -hzx -tDS -tDS -owu -rPv -jDg -eli -jDg -kGl -thm -pRm -tDS -txU -cIk -kYH -lkH -lwZ -jUn -dvf -ouc -kDk -lyN -tDS -veK -eao -qbA -lRQ -gdO -gdO -oXe -oyr -pbN -hDB -gdO -tTK -qZs -qoi -tuv -tTK -tTK -bBb -xJf -wWI -dhm -tTK -fFH -cpy -cpy -rnB -tTD -tTD -tTD -tTD -lZZ -vNk -wlw -tGh -xhT -tGh -dsu -vNk -bXO -ozn -xMO -meN -urv -meN -ozn -meN -vNk -xvl -ycm -bCV -xvl -xvl -oqZ -nMy -gBy -mUr -kSm -mUr -kSm -mUr -fvV -uwT -uwT -uwT -fWG -fWG -uwT -uwT -uwT -aru -uzI -oIJ -xPH -acp -xPH -xPH -lvU -gyi -tos -tpr -wQa -wQa -wQa -wQa -cpy -cpy -cpy -cpy -ctE -ctE -ctE -ctE -ctE -jas -uCo -sid -glQ -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(134,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -cdj -aLJ -aLJ -aLJ -iZI -iZI -dDS -fFw -iZI -svW -ebu -dAe -jBM -ebu -ebu -jBM -gak -ebu -foq -qnD -tiQ -tiQ -tiQ -gpT -foq -foq -fAo -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -saC -vjU -nct -eJh -jei -jei -jei -jei -fty -inH -vRP -inH -bkm -goB -lmY -lmY -gyU -djy -xVJ -qjG -bjd -jCi -oDQ -oDQ -ltr -rDc -ltr -bLf -bLf -ltr -wDj -wDj -jDw -jDw -jDw -wDj -sul -jDw -jDw -jDw -wDj -xFp -tBH -qSH -umR -vGp -vGp -vGp -hzx -fjb -tII -qPY -jCC -jtk -cuL -kFH -kFH -oKw -kbK -uPx -tLP -tEh -kZj -oGF -pVo -wGY -fRS -iXZ -kSD -qPY -tDS -pSy -jdW -eyE -kbK -qCA -htW -jrV -uuH -pej -nlH -jxj -tTK -byW -lVx -tuv -tTK -slH -xtZ -bvm -nxZ -bsk -tTK -fFH -cpy -rnB -tTD -rnB -rnB -tTD -rnB -lZZ -vNk -vNk -tFB -uuB -uuB -tMT -vNk -nKD -meN -meN -oHT -vNk -olw -ozn -iZT -vNk -iRu -xgA -acE -dfR -xvl -oqZ -nMy -fWG -fWG -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -fWG -uwT -uwT -uwT -aru -tfI -wzj -hWg -hWg -hWg -hWg -lvU -gyi -tos -tpr -wQa -wQa -cex -wQa -wQa -cpy -cpy -cpy -cpy -abo -abo -ctE -ctE -jas -jas -cwv -jas -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(135,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -aLJ -aLJ -aLJ -aLJ -fib -gbQ -jYj -jYj -lBG -vsz -otB -pct -nTl -nTl -ebu -gak -ebu -ygQ -gak -ygQ -ygQ -ygQ -gpT -foq -foq -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -inH -inH -csV -inH -inH -inH -cwI -inH -inH -inH -idX -rUU -sEs -rEQ -iBN -nqM -fty -eDm -nVD -qjG -bjd -qKD -oDQ -oDQ -jCi -rDc -uWw -drT -drT -gfz -wDj -jDw -eJR -eJR -nyd -pFl -jDw -eJR -eJR -kUY -pFl -xFp -tBH -qSH -umR -vGp -vGp -vGp -hzx -uPx -xBp -atb -mhT -sWr -wGY -sWr -krK -jiQ -jLe -tDS -tRr -wNm -kZB -lHV -lwW -sWr -qBb -iXZ -aUa -nMr -tDS -vwh -swe -jiQ -ajS -bPZ -jbc -hHr -xxw -pej -nlH -hjd -tTK -ivc -auV -vWz -tTK -tTK -tTK -svh -tTK -tTK -tTK -fFH -cpy -tTD -tTD -tTD -tTD -tTD -tTD -lZZ -wIi -vNk -vNk -vJD -vJD -vNk -vNk -vNk -mdA -vNk -vNk -vNk -hOZ -xiu -qmQ -vNk -jZR -xgA -acE -dfR -pxI -oqZ -nMy -cpy -cpy -uwT -uwT -uwT -fWG -fWG -uwT -uwT -cpy -fWG -uwT -uwT -uwT -uwT -aru -tfI -wzj -hWg -hWg -hWg -wyz -lvU -gyi -tos -tpr -cex -cex -eXG -cex -wQa -wQa -cpy -cpy -cpy -cpy -abo -abo -jas -jas -mIR -vpe -ghM -jas -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(136,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -ygQ -fAb -ftX -gXw -nTl -nTl -wGA -gak -ebu -ygQ -gak -ygQ -ygQ -foq -gpT -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -gof -xZl -gof -gof -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -vcx -rSH -sFx -lAs -fZk -lqO -oDO -ngW -lTi -bjd -qKD -jCi -qdJ -ltr -bjd -bjd -pqs -pHN -pqs -wDj -jDw -eJR -iJE -dXn -pFl -jDw -rlB -azE -kzC -pFl -xFp -tBH -qSH -umR -vGp -vGp -vGp -hzx -tDS -xAA -urS -xcE -tDS -kRN -xuk -kHP -wxZ -njy -xES -ptm -nIa -jvu -qZT -cEN -ngY -vEW -iYm -wgf -llt -pDT -wrp -urS -kSD -qPY -eqV -fga -jrV -nhD -pfN -nlH -jxj -tTK -mTe -sCG -ykC -xeK -oKR -kgO -uHt -eIS -lva -nGw -fFH -tTD -tTD -rnB -tTD -tTD -tTD -tTD -lZZ -xXg -sox -aGE -uvC -vfC -mJQ -kug -dEP -rMz -xXg -vNk -vNk -sVm -sVm -vNk -vNk -gFl -xgA -bsG -dfR -xvl -oqZ -nMy -cpy -uwT -uwT -uwT -fWG -fWG -fWG -fWG -uwT -cpy -uIe -uwT -uwT -uwT -uwT -aru -icc -wzj -wzj -oIJ -oIJ -wzj -lvU -gyi -tos -tpr -eXG -eXG -eXG -eXG -wQa -wQa -wQa -cpy -cpy -cpy -cpy -abo -jas -clC -vpe -eso -eso -plk -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(137,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -xvk -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -ygQ -ebu -dAe -oIS -nTl -nTl -ebu -gak -ebu -ygQ -gak -ygQ -ygQ -foq -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -osa -fWF -sVV -azI -pPo -utR -dvA -cjy -cjy -jYX -svq -mQd -nbj -saC -tiQ -bhC -uXR -rEQ -jei -jei -fty -aCW -kSk -tiQ -bjd -bjd -muk -lXB -bjd -bjd -bjd -bjd -bjd -bjd -wDj -jDw -vCh -jDw -jDw -pFl -jDw -rlB -eJR -eeF -pFl -xFp -tBH -qSH -umR -vGp -vGp -vGp -hzx -tDS -xMA -urS -lbA -hMb -jNE -xSP -leV -wCM -pUw -lHz -srU -waZ -pVo -wGY -hJG -mEz -iwt -anM -jUn -wVT -bCC -feA -rVy -pIH -qPY -gdO -gdO -pDP -qjl -dBs -thC -gdO -tTK -qsE -uRs -bYF -hQY -maD -maD -mop -jrH -ahk -nGw -fFH -rnB -tTD -rnB -tTD -tTD -tTD -rnB -lZZ -xXg -sox -xXg -xXg -xXg -xXg -xXg -xXg -gIg -xXg -xXg -vNk -vNk -vNk -vNk -vNk -xvl -ycm -tLm -xvl -xvl -oqZ -nMy -fWG -uwT -uwT -uwT -uwT -fWG -fWG -fWG -uwT -cpy -uwT -uwT -uwT -uwT -uwT -aru -uzI -dCi -dCi -uzI -dCi -dCi -uzI -uzI -uzI -tpr -eXG -eXG -eXG -eXG -eXG -wQa -wQa -wQa -wQa -wQa -cpy -cpy -jas -fWf -cTZ -suh -vpe -sdj -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(138,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -dzw -cEh -aLJ -aLJ -iZI -dDS -iZI -iZI -iZI -ebu -dAe -svJ -pct -ebu -xls -vLk -vsz -flR -kws -ubq -qqe -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -osa -osa -sVV -cjy -pcq -cjy -mdD -woG -cjy -jYX -cjy -mQd -nbj -sZq -tiQ -tiQ -dYi -xVJ -xVJ -xVJ -gZw -ajC -tiQ -tiQ -saC -bjd -bjd -bjd -bjd -saC -saC -saC -saC -saC -wDj -wDj -wDj -cKX -yjh -uaY -qIR -eJR -eJR -gZD -wDj -cSg -tBH -qSH -umR -qSH -vGp -vGp -hzx -fjb -uKo -ajm -gaw -sWr -wGY -xJL -olI -jiQ -kbK -tDS -bxO -urS -ixQ -mEz -koM -wGY -lRF -ojt -jiQ -bIl -tDS -pIB -kOm -bqQ -fqd -eRa -xWY -tNC -svc -sJq -tNC -sbI -wpJ -jIz -xnt -mkt -iNr -fpa -ntX -lvd -unK -tvy -nGw -fFH -tTD -tTD -tTD -tTD -tTD -tTD -rnB -fFi -xXg -sox -xXg -mJQ -xXg -lWW -xXg -xXg -xXg -xXg -xXg -xXg -hxY -rHX -iWV -jLH -dfR -xhD -bsG -dfR -jLH -oqZ -nMy -fWG -fWG -uwT -tXW -uwT -uwT -fWG -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -cwL -ybz -ybz -cwL -ybz -ybz -ybz -cwL -ybz -tpr -wPN -eXG -eXG -wPN -eXG -cex -wQa -wQa -wQa -wQa -wQa -cpy -jas -qTi -eso -wJq -wNX -fNa -jas -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(139,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -cEh -cEh -cEh -aLJ -dDS -iZI -iZI -svW -svW -dAe -jBM -vvH -flR -pif -gak -svW -svW -jBM -jBM -nPX -ebu -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -osa -osa -sVV -cjy -pcq -cjy -mdD -woG -reZ -jYX -cjy -mQd -nbj -sZq -sZq -tiQ -cPx -cPx -cPx -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -sYl -saC -saC -utq -saC -qSH -qSH -sIk -jDw -rlB -eJR -sxY -ecv -hQS -tBH -qSH -umR -qSH -vGp -vGp -hzx -nUc -tLP -fQM -ruk -gyV -gyV -aiH -fHI -rEG -qPY -idy -mBO -ajm -feD -hay -fHI -gyV -gyV -qxG -qbn -bIl -tDS -jOP -urS -ilo -kbK -gdO -jbc -ots -uuH -pfN -azH -cOX -tTK -lMf -fuN -fBV -ckf -ndl -iEz -ile -unK -tTK -tTK -fFH -sKJ -tTD -tTD -tTD -tTD -tTD -rnB -rnB -lZZ -sox -gIg -ceG -sRY -xXg -kzr -kug -iVm -xXg -xXg -xXg -xXg -qLQ -tLi -jLH -dfR -xhD -bsG -dfR -jLH -oqZ -nMy -fWG -fWG -uwT -uwT -xxk -ycM -xdX -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -ybz -ybz -ybz -ybz -ybz -ybz -ybz -ybz -ybz -tpr -uja -uja -uja -eXG -eXG -cex -wQa -wQa -wQa -wQa -wQa -nkT -jas -jPP -vpe -eso -wNX -ydd -jas -tpr -eXG -cpy -cpy -cpy -cpy -cpy -bMX -"} -(140,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -cEh -cEh -cTX -iZI -iZI -iZI -svW -tnP -fvj -fvj -fvj -rYc -xXl -svW -jBM -jBM -jBM -wwu -ebu -saC -saC -saC -saC -saC -saC -saC -saC -saC -jQs -nvj -maL -maL -nvj -rfT -tiQ -cjy -pcq -cjy -mdD -woG -cjy -jYX -cjy -mQd -nbj -sZq -sZq -sZq -sZq -sZq -sZq -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -cYn -qSH -shD -cCH -qSH -qSH -bha -cYn -qSH -eJR -rlB -iJE -sxY -cKX -hQS -tBH -qSH -umR -qSH -qSH -vGp -hzx -tDS -tDS -iuN -qPY -vUi -wEs -vRd -vUi -sJD -sqt -tDS -ajS -qkW -lOl -bbB -eWT -kLa -kbK -nMr -qPY -qPY -tDS -khp -ajm -qbn -acm -nCz -vHe -mWF -vOx -dBs -poQ -prm -wMJ -tuv -fuN -gla -txH -qox -xWl -jJR -eHJ -kNp -tTK -fFH -sKJ -tTD -tTD -tTD -tTD -tTD -rnB -bhB -xXg -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -uuD -lFO -gIg -imT -xvl -xvl -iZt -aIk -xvl -xvl -oqZ -nMy -uwT -fWG -fWG -cpy -uwT -tBb -ixP -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -ybz -ybz -ybz -ybz -ybz -ybz -ybz -ybz -ybz -tpr -eXG -eXG -eXG -eXG -eXG -cex -wQa -wQa -wQa -wQa -wQa -nkT -jas -jas -gDu -eso -gDu -jas -jas -tpr -eXG -cpy -cpy -cpy -cpy -cpy -bMX -"} -(141,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -cat -cEh -dzw -ebu -ebu -fAb -ebu -ebu -ebu -ebu -oIS -ebu -ebu -ebu -ebu -ebu -ebu -lcF -saC -saC -saC -saC -saC -saC -saC -osa -tvu -bvr -jHb -jHb -jHb -jIR -qBF -tiQ -vVE -pcq -cjy -myS -cjy -cjy -jYX -vVE -mQd -nbj -sZq -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -saC -saC -saC -saC -saC -saC -saC -qSH -qSH -qSH -qSH -qSH -qSH -sxY -eJR -eJR -eJR -eJR -eJR -hcE -sjQ -lYn -wDj -qDE -tBH -qSH -umR -qSH -qSH -qSH -jNB -xFp -tDS -tDS -dPt -xQg -tDS -wOe -dPt -tDS -tDS -tDS -dPt -sNl -kwO -dPt -tDS -tDS -dPt -dPt -dPt -tDS -tDS -pun -nrR -kbK -jFp -gdO -gdO -exW -qjl -aAj -lWO -gdO -tTK -riL -sCG -hJl -tTK -tTK -tTK -rnf -rbO -oCP -tTK -fFH -rnB -cpy -cpy -tTD -rnB -tTD -rnB -lZZ -uuD -uuD -eNk -bTS -uuD -jMn -vog -uuD -uuD -ryA -kVs -uuD -uuD -xXg -imT -xvl -xvl -wsL -eYn -xvl -xvl -oqZ -nMy -uwT -uwT -fWG -cpy -fWW -tlr -kcC -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -cwL -ybz -ybz -cwL -ybz -ybz -ybz -cwL -ybz -tpr -eXG -eXG -eXG -eXG -cex -wQa -fdh -wQa -wQa -fdh -wQa -bgE -ybz -jas -jas -cwv -jas -jas -ybz -mGF -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(142,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -dkC -dkC -dkC -tiQ -ygQ -ygQ -ygQ -ygQ -oUe -ygQ -tiQ -tiQ -cYQ -cYQ -cYQ -tiQ -tiQ -saC -saC -saC -saC -saC -saC -osa -osa -bvr -jHb -jHb -jHb -jHb -qBF -tiQ -mua -mua -bAs -cgs -bAs -bAs -mua -mua -mua -nbj -sZq -sZq -mZW -mZW -sZq -sZq -sZq -saC -saC -saC -saC -saC -saC -saC -saC -saC -qSH -qSH -qSH -qSH -qSH -qSH -qSH -eJR -qSH -qSH -eJR -iJE -eJR -azE -lYn -wDj -xFp -tBH -qSH -qQB -qDV -xSv -xSv -xSv -jAB -lMh -lMh -lMh -lMh -lMh -lMh -lMh -wku -xFp -tDS -dmK -xMm -xHp -tGd -tDS -fhP -kGl -jDg -jDg -tRF -tDS -tDS -nfe -uAv -tDS -gdO -dwp -fQN -uuH -pej -azH -iHV -hRY -ihh -sCG -gNO -tTK -tTK -tTK -cgU -rbO -plW -tTK -fFH -rnB -rnB -cpy -sKJ -tTD -tTD -rnB -lZZ -uuD -put -hnf -rOg -xYp -sop -pNY -mTY -mco -pNY -wMc -jvD -uuD -xXg -imT -qVc -bXW -xhD -bsG -dfR -jLH -oqZ -nMy -uwT -uwT -fWG -fWG -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -uzI -dCi -dCi -uzI -dCi -dCi -uzI -uzI -uzI -tpr -wQa -eXG -eXG -cex -wQa -wQa -fII -fII -fII -wQa -wQa -eXG -bgE -qQx -qQx -qQx -qQx -qQx -mGF -eXG -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(143,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -ebu -ebu -ebu -ebu -oIS -ebu -tiQ -tnx -ooa -ooa -ooa -dRG -tiQ -saC -saC -saC -saC -saC -saC -osa -osa -bvr -jHb -jIR -jHb -jHb -qBF -tiQ -saC -ncD -reZ -myS -cjy -cjy -jYX -cPx -ljA -woR -sZq -sZq -mZW -mZW -sZq -sZq -sZq -saC -saC -saC -saC -saC -saC -saC -saC -cYn -qSH -qSH -qSH -qSH -sYl -tOt -iaM -sYl -cCH -yeH -bha -eJR -eJR -eJR -xcQ -wDj -xFp -tBH -qSH -qSH -umR -qSH -qSH -qSH -qSH -qSH -qSH -qSH -vGp -vGp -vGp -vGp -pZo -hzx -tDS -bQp -iss -lbA -afU -pBP -wnn -gQv -kdA -srh -qPY -mtF -dbg -kbK -pqb -ioo -gdO -iNa -jrV -oNl -pej -azH -iHV -hRY -erg -sCG -bYF -vqC -aSz -kUt -nTn -nwE -kNp -tTK -fFH -rnB -rnB -cpy -sKJ -tTD -tTD -rnB -lZZ -vTh -xSJ -rMd -xBs -uuD -tDx -pNY -rvY -qTb -pNY -oGE -pBI -wOV -xXg -imT -tKW -eYn -xgA -bsG -jZR -jLH -oqZ -nMy -uxT -sps -sps -sps -dsl -uwT -uwT -uwT -uwT -uwT -tXW -uwT -uwT -uwT -uwT -aru -tfI -tUC -uZT -cnI -wzj -wzj -pkS -gyi -tos -tpr -eXG -eXG -eXG -wQa -wQa -wQa -wQa -cjb -wQa -wQa -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -bMX -"} -(144,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -dVP -fCQ -dVP -dVP -jEu -nTl -ntt -ntt -ntt -ehd -nTl -tiQ -mgW -fNm -get -get -tzj -saC -saC -saC -saC -saC -osa -osa -osa -fPs -bvr -jHb -jHb -jHb -jHb -qBF -tiQ -saC -pcq -cjy -myS -cjy -cjy -jYX -dmp -mQw -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -tiQ -saC -saC -saC -qSH -qSH -qSH -qSH -fdS -qSH -cpy -tOt -qSH -cYn -xei -gQI -iGE -jDw -jDw -jDw -wDj -cdi -cdi -qcY -qcY -moE -qcY -qcY -pSv -qSH -qSH -qSH -qSH -vGp -vGp -cpy -vGp -pZo -hzx -tDS -hXG -vkj -lbD -pUw -lHz -afZ -dPG -pVo -jzR -kFH -ctT -cjW -kFH -klw -kfI -fOp -tzI -tWe -uuH -pfN -nlH -cOX -hRY -qZh -sCG -rxH -sRf -gsu -ile -osZ -ewh -tTK -tTK -fFH -rnB -rnB -tTD -tTD -rnB -tTD -rnB -lZZ -hPK -hnf -oGE -rPu -uuD -wMh -klB -qmL -mbr -cmQ -rOg -kzb -wOV -xXg -imT -xvl -xvl -iZt -aIk -xvl -xvl -oqZ -nMy -ppD -xkO -xkO -xkO -tKC -uwT -uwT -uwT -uwT -fWG -tXW -tXW -uwT -uwT -uwT -aru -tfI -tUC -bZJ -hWg -xPH -hWg -pkS -gyi -tos -tpr -eXG -eXG -eXG -wQa -wQa -wQa -wQa -wQa -wQa -wQa -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -bMX -"} -(145,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -ixy -dVP -rOC -kdO -dVP -dVP -fCQ -dVP -dVP -dVP -tZv -fCQ -tiQ -ooa -fOM -geu -get -ooa -tiQ -saC -tiQ -saC -saC -osa -osa -osa -osa -bvr -jHb -jHb -jHb -jHb -qBF -tiQ -saC -pcq -cjy -mdD -woG -cjy -jYX -cPx -mSl -mZX -sZq -sZq -sZq -nGc -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -saC -saC -saC -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -dRL -dRL -dRL -dRL -eDQ -fwz -eDQ -dRL -dRL -dRL -eDQ -eDQ -gQk -eDQ -dRL -guE -pSv -qSH -qSH -qSH -qSH -vGp -cpy -cpy -pZo -hzx -tDS -nFS -bCs -hld -sYO -tDS -tFg -tBB -pVo -sWr -ngY -ngY -qKk -oXU -kSD -glK -gdO -gdO -siU -uuH -pfN -oRb -gdO -tTK -jAl -pVa -pMi -pPH -fzv -udO -hRl -ruE -kKq -nGw -fFH -rnB -rnB -tTD -rnB -rnB -tTD -rnB -lZZ -wOV -rWV -ozF -xvo -mxO -lMx -ugX -dPF -hjY -qnM -rOg -opV -wOV -xXg -imT -xvl -xvl -wsL -eYn -xvl -xvl -oqZ -nMy -ppD -xkO -icY -snT -ujy -uwT -uwT -uwT -uwT -fWG -fWG -uwT -uwT -uwT -uwT -aru -icc -spt -bZJ -hWg -xPH -hWg -pkS -gyi -tos -tpr -eXG -eXG -eXG -eXG -wQa -wQa -wQa -wQa -wQa -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(146,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -ixy -dVP -vNq -jFT -xnU -xnU -onA -xiX -xiX -xiX -hqF -lgQ -tiQ -xdG -eef -iGf -ooa -viB -tiQ -saC -tiQ -osa -mxQ -osa -osa -nyZ -osa -bvr -jHb -jHb -jHb -jIR -qBF -tiQ -saC -pcq -qNa -mdD -woG -cjy -jYX -tiQ -tiQ -nbj -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -saC -saC -saC -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -dRL -dRL -gpA -dRL -dRL -mIz -mIz -hVJ -dRL -dRL -dRL -sWz -mIz -wsl -lJY -dRL -dRL -guE -pSv -qSH -qSH -qSH -vGp -vGp -cpy -pZo -tta -tDS -tDS -dPt -dPt -tDS -tDS -tFg -tBB -mhT -sWr -xOx -wGY -azK -iYm -jiQ -kbK -fOp -mAt -tWe -qjl -dBs -nlH -ael -tTK -tBi -sCG -gZo -sLE -ykj -bdN -vNu -wdP -kKq -nGw -fFH -rnB -rnB -tTD -rnB -rnB -tTD -tTD -lZZ -uuD -aav -cGz -qRz -mxO -mbm -pNY -ylp -scc -pNY -hbh -wZS -uuD -xXg -imT -jLH -dfR -xhD -bsG -dfR -jLH -oqZ -nMy -ppD -xkO -xkO -xkO -tKC -uwT -uwT -uwT -fWG -fWG -uwT -uwT -uwT -uwT -fWG -aru -uzI -oIJ -xPH -acp -acp -xPH -pkS -gyi -tos -tpr -eXG -eXG -wQa -wQa -wQa -wQa -wQa -eXG -eXG -eXG -eXG -eXG -wQa -wQa -wQa -wQa -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -bMX -"} -(147,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -dVP -vNq -uID -uID -uID -uID -uID -uID -kRA -iqe -tZv -tiQ -tiQ -wQz -get -get -eic -tiQ -tiQ -tiQ -osa -osa -osa -osa -osa -osa -bvr -jHb -jHb -jHb -jHb -qBF -tiQ -saC -pcq -jwi -mdD -woG -cjy -jYX -tiQ -jPw -jPw -npx -sZq -sZq -sZq -sZq -sZq -sZq -nGc -sZq -sZq -saC -tiQ -tiQ -saC -saC -qSH -qSH -qSH -qSH -cYn -cpy -cpy -cpy -dRL -hFt -xCT -hFt -dRL -mIz -xCT -hVJ -dRL -dRL -xXT -xCT -xCT -qMd -xCT -aLa -dRL -dRL -guE -pSv -qSH -qSH -qSH -vGp -vGp -pZo -hBe -tDS -cZl -aYR -aYR -isE -ifn -jra -ftP -ylY -wGY -gyV -gyV -psS -gyV -cJp -otO -gdO -jYe -jrV -rZj -aAj -fyz -gwQ -tTK -ghP -hGN -ykC -fYF -jnC -cYZ -yiI -jnC -hGF -nGw -fFH -rnB -rnB -tTD -rnB -tTD -tTD -tTD -lZZ -uuD -uuD -cGz -cGz -mxO -qWr -bTS -pNY -brw -ptk -rTb -uuD -uuD -xXg -imT -jLH -jZR -xhD -bsG -jZR -jLH -oqZ -nMy -ppD -xkO -fON -snT -ujy -uwT -uwT -uwT -cpy -fWG -fWG -uwT -uwT -uwT -fWG -aru -uzI -oIJ -hWg -hWg -acp -hWg -pkS -gyi -tos -tpr -wQa -cex -cex -cex -wQa -syH -lBw -lBw -lBw -goT -eXG -kfG -wQa -wQa -tJa -tJa -wQa -eXG -eXG -eXG -eXG -eXG -wPN -eXG -cpy -cpy -bMX -"} -(148,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -ixy -dVP -bkv -cZR -cZR -mNm -mNm -uID -uID -uID -nip -pBe -lgQ -tiQ -tiQ -get -get -jLr -tiQ -tiQ -osa -osa -osa -osa -osa -wOc -osa -bvr -jIR -kba -kba -jHb -qBF -tiQ -saC -pcq -cjy -myS -cjy -cjy -jYX -tiQ -jPw -jPw -jPw -sZq -sZq -sZq -sZq -sZq -sZq -mZW -sZq -sZq -saC -saC -tiQ -saC -saC -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -dRL -dRL -dVM -dRL -dRL -jIJ -xCT -jwq -dRL -gXr -bvU -xCT -tMp -qjr -xCT -xCT -eiH -dRL -dRL -pcj -qSH -qSH -qSH -vGp -vGp -pZo -hBe -nUc -tFg -pph -kFH -oPN -aWN -ctT -sWr -pVo -kSD -fGB -bnw -pQd -jyJ -pQd -tMP -gdO -rXZ -tWe -cNU -rdT -fyz -jbc -tTK -ivc -rFz -ewq -tTK -tTK -tTK -svh -tTK -tTK -tTK -fFH -rnB -rnB -tTD -tTD -tTD -tTD -tTD -vIp -xXg -uuD -uuD -uuD -uuD -uuD -jAF -rWP -xZg -uuD -uuD -uuD -viG -xXg -imT -xvl -xvl -dXR -eYn -xvl -xvl -oqZ -nMy -ppD -xkO -xkO -xkO -tKC -uwT -uwT -uwT -cpy -cpy -fWG -uwT -uwT -uwT -fWG -aru -uzI -wzj -mWd -xPH -xPH -xPH -lvU -gyi -tos -tpr -wQa -wQa -eXG -dkX -rBd -ewE -mrF -mrF -mrF -iIQ -rBd -sfO -eXG -wQa -wQa -wQa -eXG -eXG -eXG -eXG -eXG -jjG -eXG -cpy -cpy -cpy -bMX -"} -(149,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -ixy -dVP -aUl -dVP -dVP -dVP -vNq -uID -uID -uID -jFT -kdO -tZv -dVP -tiQ -viB -ooa -tiQ -tiQ -tiQ -osa -osa -osa -osa -osa -osa -osa -kVA -ryG -ryG -ryG -ryG -qHB -tiQ -bNN -rYF -utR -dvA -cjy -cjy -jYX -tiQ -jPw -jPw -jPw -nuG -mZX -sZq -sZq -sZq -mZW -mZW -sZq -sZq -lJl -ntN -tiQ -saC -saC -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -dRL -sFu -uSJ -hFt -dRL -dqM -fzE -mIz -eDQ -hgY -oBf -xCT -tMp -qsi -xCT -rsq -xCT -mIz -eDQ -pcj -qSH -qSH -qSH -qSH -vGp -pZo -hBe -uPx -kjb -odv -ngY -oGF -iTF -sWr -sWr -oMi -jiQ -uhA -tDS -sgI -fTY -pUw -rXO -gdO -gdO -qXq -uuH -tov -thC -gdO -tTK -tuv -fuN -iEo -tTK -nRL -hiN -bvm -mJi -bsk -tTK -fFH -rnB -rnB -tTD -tTD -tTD -rnB -rnB -rnB -lZZ -xXg -xXg -xXg -xXg -rWP -bTS -rOg -brw -rWP -xXg -xXg -xXg -xXg -imT -xvl -xvl -ycm -tLm -xvl -xvl -oqZ -nMy -kIV -mUr -mUr -apS -wRk -uwT -uwT -uwT -cpy -cpy -fWG -uwT -uwT -uwT -fWG -aru -fMh -spt -uWV -jEA -vcR -hWg -lvU -gyi -tos -tpr -wQa -dkX -rBd -nPb -yiU -hgT -mrF -brO -ptu -ptu -hxf -jGp -rBd -sfO -eXG -eXG -eXG -eXG -eXG -eXG -eXG -jjG -eXG -eXG -cpy -cpy -bMX -"} -(150,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -czC -czC -czC -czC -dVP -vNq -uID -xHB -twX -sWq -jFT -ixi -dVP -tiQ -slu -tiQ -tiQ -tiQ -tiQ -tiQ -sVV -sVV -sVV -tiQ -tiQ -tiQ -tiQ -tiQ -sVV -sVV -sVV -tiQ -tiQ -mua -mua -tWs -cpS -ozu -tWs -mua -tiQ -tiQ -tiQ -tiQ -tiQ -nAC -kBK -kBK -kBK -nRK -kBK -kBK -kBK -mqA -tiQ -tiQ -saC -saC -qSH -cYn -qSH -qSH -cpy -cpy -cpy -cpy -dRL -ddG -msB -oBx -oWH -lNn -qxX -pQZ -wWL -pfo -oBx -nTg -nTg -iAZ -xCT -xCT -xCT -mIz -eDQ -pcj -qSH -qSH -qSH -qSH -vGp -pZo -hBe -uPx -tFg -swe -kNe -sWr -dPG -wGY -sWr -xxU -iAA -gnh -iVD -wnn -gQv -mdP -foW -gdO -ael -naA -vjQ -aAj -hQZ -hCJ -tTK -eSA -oFq -fMW -tTK -vlf -wWI -bvm -nrJ -cIv -tTK -fFH -rnB -rnB -tTD -rnB -rnB -dqt -cUb -cUb -xXg -xXg -xXg -xXg -xXg -rWP -noj -pNY -fcw -rWP -xXg -xXg -xXg -xXg -imT -xvl -xvl -jVT -gnH -xvl -xvl -oqZ -nMy -uwT -uwT -fWG -fWG -fWG -uwT -uwT -cpy -cpy -cpy -fWG -fWG -uwT -uwT -fWG -aru -fMh -spt -uWV -fZJ -xJB -oDk -lvU -gyi -tos -tpr -dkX -nPb -hxf -ptu -ptu -nFx -nFx -brO -wYs -mzc -ptu -ptu -mrF -jGp -sfO -eXG -eXG -eXG -eXG -eXG -eXG -jjG -eXG -eXG -cpy -cpy -bMX -"} -(151,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -vQQ -xnU -kdO -fID -dVP -vNq -uID -uID -mNm -uID -uID -qux -dVP -fCQ -dVP -dVP -saC -tiQ -tiQ -tiQ -cjy -cjy -cjy -saC -saC -saC -saC -cjy -cjy -cjy -cjy -idd -mua -gEm -fJG -utR -bOE -woG -cjy -iwp -iOD -tiQ -saC -saC -tiQ -anq -anq -anq -anq -tWs -anq -anq -anq -anq -tiQ -tiQ -tiQ -saC -qSH -qSH -qSH -eCe -qSH -cpy -cpy -cpy -dRL -oVJ -gQu -hFt -dRL -mIz -jAV -mIz -eDQ -sIv -oBR -pjT -qly -qty -reo -xCT -xCT -mIz -eDQ -pcj -vGp -qSH -qSH -qSH -qSH -pZo -hBe -uPx -kjb -qGl -mEx -sWr -lxZ -lHV -wGY -sWr -ltY -bEa -pUw -urS -oGF -iAW -epJ -gdO -aLe -hWb -qjl -aAj -azH -ccy -tTK -tTK -iPa -stW -tTK -tTK -iHt -dEX -uBQ -pnC -tTK -fFH -rnB -tTD -tTD -rnB -dqt -xXg -cUG -cUG -cUG -cUG -cUG -cUG -cUG -cUG -vLw -wao -jsV -cUG -cUG -cUG -cUG -cUG -cUG -cUG -cyh -swF -fzV -lQy -cUG -egg -nMy -uwT -uwT -fWG -fWG -fWG -uwT -uwT -cpy -cpy -cpy -fWG -tXW -uwT -uwT -fWG -aru -fMh -wzj -qIm -oIJ -sIe -sIe -lvU -gyi -sbh -dvy -nPb -mrF -mfR -jMy -qGI -uMr -uMr -brO -wDa -vbF -kBj -dIi -ljb -ljb -jGp -rBd -sfO -eXG -eXG -eXG -eXG -eXG -pvW -eXG -cpy -cpy -bMX -"} -(152,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiA -uID -nip -rZp -dVP -vNq -uID -uID -uID -mNm -mNm -lhW -xnU -xnU -xnU -kdO -saC -saC -saC -anq -pLa -pLa -pLa -pLa -saC -saC -pLa -qHx -pcP -fKc -pLa -eBI -cAw -xZj -cjy -cjy -woG -woG -cjy -cjy -iwp -wyq -pLa -cUf -pLa -pLa -pLa -pLa -eBI -eBI -pLa -pLa -pLa -pLa -gDU -saC -saC -saC -saC -dJt -eCe -cYn -eCe -eCe -cpy -cpy -dRL -dRL -dVM -dRL -dRL -jIJ -xCT -jwq -dRL -noa -oBR -ppK -qws -qNK -reQ -xCT -iQu -dRL -dRL -pcj -vGp -vGp -qSH -qSH -qSH -umR -hBe -tDS -crJ -rEZ -nSG -gbk -rcd -lHY -mBc -kSD -dvC -fui -qkW -kOm -oGF -bsw -dCL -gdO -mvZ -hWb -uuH -pfN -wnx -iNa -tTK -tuv -wFO -aQu -gRL -tTK -tTK -tTK -tTK -tTK -tTK -fFH -rnB -rnB -tTD -rnB -lZZ -cUG -cUG -rwu -cWP -xAV -qpi -jpL -vnu -rcD -cnz -tID -nSv -cUG -uii -fAK -qXP -ozP -sDO -qiY -wjj -xRw -uaI -smC -cUG -xzK -oxO -uwT -uwT -fWG -fWG -fWG -uwT -uwT -uwT -cpy -fWG -tXW -uwT -uwT -uwT -uwT -aru -uzI -dDq -dDq -uzI -uzI -uzI -uzI -uzI -uzI -mrF -mrF -mrF -wrK -pXu -eOg -hMH -nFx -brO -wYs -wLB -wYs -wDa -wYs -mrF -mCR -mrF -rnq -rnq -sfO -eXG -eXG -eXG -eXG -eXG -cpy -cpy -bMX -"} -(153,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -ria -cZR -pWH -cYQ -dVP -mNm -mNm -uID -uID -mNm -mNm -pba -uID -uID -uID -nip -dVP -saC -cjy -anq -cjy -kUy -utR -utR -utR -fIU -utR -tVW -utR -utR -utR -mMd -thT -cjy -cjy -woG -mua -mua -woG -cjy -cjy -wyq -cjy -lQr -cjy -cjy -cjy -idd -idd -idd -idd -idd -cjy -cjy -gDU -saC -saC -saC -saC -eCe -eCe -qSH -qSH -eCe -cpy -cpy -dRL -hFt -xCT -hFt -dRL -aKt -xCT -mIz -dRL -dRL -hrd -pGg -qxg -qPU -rfk -hWS -dRL -dRL -qYP -nyv -vGp -vGp -qSH -qSH -qSH -umR -hBe -nUc -pAa -kOm -kAj -azJ -tgj -svo -bqo -fRn -uhA -tDS -cXd -xBy -ngY -iAW -epJ -gdO -gdO -tWe -uuH -pfN -nlH -gdO -tTK -uld -rxH -rxH -sBD -ivc -rev -tuv -lMf -tuv -tTK -fFH -rnB -rnB -tTD -rnB -lZZ -cUG -rBu -wgR -tum -pRH -pRH -pRH -pRH -tum -tum -pRH -gEd -kuH -pRH -pRH -pRH -tum -pRH -pRH -tum -pYu -pRH -xBP -cUG -nMy -xxk -ycM -tGb -fWG -fWG -fWG -uwT -uwT -uwT -fWG -uwT -tXW -uwT -uwT -uwT -uwT -xRU -lxC -xzK -xzK -uzI -uzI -uzI -uzI -mrF -mrF -mrF -wYs -wYs -jkl -jpb -jsh -wYs -wYs -brO -wYs -wYs -wYs -wDa -wYs -wYs -wYs -mrF -mrF -mrF -jGp -sfO -eXG -eXG -eXG -eXG -cpy -cpy -bMX -"} -(154,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -dKO -cYQ -dVP -uDC -mNm -mNm -uID -mNm -mNm -pba -sHB -nTk -sHB -nip -dVP -kmj -cjy -anq -cjy -mdD -woG -woG -cjy -lQr -cjy -woG -woG -woG -cjy -lxz -tWs -woG -woG -mua -tiQ -mua -mua -woG -woG -wyq -cjy -lQr -woG -woG -woG -idd -idd -idd -mee -mee -lpy -gRZ -gDU -saC -saC -saC -saC -saC -eCe -qSH -qSH -qSH -eCe -cpy -dRL -dRL -jIJ -dRL -dRL -dFW -tVr -cgW -dRL -dRL -dRL -jIJ -bnu -ddl -tET -dRL -dRL -qYP -nyv -vGp -vGp -vGp -vGp -qSH -qSH -umR -hBe -uPx -tLP -tEh -dFd -arV -bkt -dsL -iQL -jiQ -ccn -qkW -uvc -azK -wGY -kSD -dbg -ehy -jbc -jrV -uuH -pej -azH -eIH -tTK -sdg -sBD -rxH -rxH -wij -rxH -uuY -sBD -lGL -tTK -fFH -rnB -tTD -tTD -tTD -lZZ -cUG -kFD -tID -wmV -gUw -wmV -cnz -cnz -cnz -cnz -uaI -tID -oRH -tID -tID -fld -mkW -bdH -uaI -tID -xRw -tID -wjB -cUG -nMy -rcO -tBb -xdb -uwT -tXW -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -aru -xzK -uzI -uzI -uzI -mrF -jVq -gxp -fPO -ufR -jVq -gxp -fPO -ufR -jVq -gxp -fPO -ufR -jVq -gxp -fPO -ufR -jVq -gxp -fPO -ufR -jVq -mrF -jGp -sfO -eXG -eXG -eXG -cpy -cpy -bMX -"} -(155,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -sUy -bkv -oaY -mNm -foO -rhT -xwb -qju -qmK -qqr -tSu -dir -utR -kJm -utR -bOE -woG -woG -cjy -lQr -cjy -woG -woG -woG -cjy -cjy -upF -woG -woG -tiQ -tiQ -tiQ -mua -woG -woG -wyq -cjy -idd -lpy -lpy -lpy -idd -idd -idd -mee -woG -woG -cjy -gDU -saC -saC -saC -saC -saC -qSH -qSH -qSH -qSH -cYn -gwC -cpy -dRL -dRL -dRL -dRL -dRL -dRL -dRL -dRL -dRL -dRL -eDQ -eDQ -gQk -eDQ -dRL -pGY -nyv -vGp -vGp -vGp -vGp -vGp -vGp -qSH -umR -hBe -nUc -tLP -vTS -oGF -dkq -iBr -wGY -eUX -kSD -bZN -pBk -kOm -wGY -wGY -iAW -epJ -gdO -gDB -szl -hmJ -poQ -bOc -gfk -tTK -tuv -sBD -sBD -rxH -wij -sBD -rxH -rxH -ayt -tTK -fFH -rnB -rnB -tTD -rnB -lZZ -cUG -sxG -tID -kqo -uQf -fsz -wmV -uQf -vgb -cnz -vDr -xfI -cUG -aXf -uaI -vBN -arq -jea -aOj -tID -rzR -uaI -sht -cUG -nMy -fWW -tlr -xdt -uwT -uwT -uwT -xxk -ycM -tGb -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -uzI -uzI -uzI -hxf -pab -xYA -aiP -xYA -xYA -xYA -aIp -aIp -aIp -xYA -xYA -aiP -xYA -xYA -aIp -aIp -aIp -aIp -aIp -xYA -aiP -xYA -jYr -hxf -aVa -eXG -eXG -wQa -cpy -cpy -bMX -"} -(156,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -hWl -xJe -mIP -iop -tRW -tiQ -tiQ -mNm -dVP -vNq -mNm -uID -pba -scT -nxE -scT -nip -dVP -kmj -reZ -anq -cjy -cjy -cjy -cjy -qNa -lQr -cjy -vKw -lpr -reZ -cjy -jwi -tWs -cjy -tEH -woG -tiQ -mua -woG -cjy -cjy -wyq -idd -idd -cjy -cjy -cjy -tEH -idd -idd -cjy -cjy -cfb -reZ -gDU -saC -saC -saC -saC -saC -qSH -qSH -qSH -qSH -qSH -eCe -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -wRX -wRX -wRX -cym -gHw -kjM -nyv -vGp -vGp -vGp -vGp -vGp -vGp -vGp -qSH -yaF -rWw -nUc -tFg -oTb -kNe -rUr -waZ -wGY -oGF -kSD -xPk -aFt -kOm -lCh -cpG -jKP -nUs -gdO -wYC -dKU -vOx -rzc -baA -fXX -tTK -cqF -cqF -cqF -cqF -tTK -tna -tuv -tuv -sBR -tTK -fFH -rnB -tTD -tTD -rnB -lZZ -cUG -xGg -kqo -tsN -uQn -vPz -cIO -uQn -vgw -sht -vDr -xfI -wao -xfI -tID -uaI -jny -cQm -cIA -uKw -dKd -oaq -wSm -cUG -nMy -uwT -uwT -uwT -uwT -uwT -uwT -rcO -tBb -ixP -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -aru -xzK -uzI -fxF -mrF -gVf -xYA -xYA -xYA -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -xYA -aIp -kcR -mrF -cDi -eXG -wQa -wQa -cpy -cpy -bMX -"} -(157,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -pPX -fuZ -oNt -oNt -sER -gSH -eZT -tiQ -tiQ -ezp -eGQ -eGQ -irW -uzd -uID -mNm -mNm -nip -dVP -kmj -cjy -anq -wJL -lkP -lkP -lkP -lkP -saC -saC -lkP -gds -lkP -lkP -wJL -qah -cWh -cjy -cjy -woG -woG -cjy -cjy -exd -vLF -wJL -lkP -lkP -lkP -lkP -lkP -lkP -lkP -lkP -lkP -lkP -lkP -gDU -saC -saC -bUN -saC -saC -cYn -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -lyP -vGp -vGp -vGp -itJ -lTV -lTV -lTV -lTV -lTV -lTV -lTV -lTV -lTV -lTV -xSv -tWE -hBe -tDS -kjb -uRC -vqv -iIs -lHV -pfX -ngY -kSD -xPk -bqT -kOm -lOq -oGF -vVG -pqD -gdO -gdO -gdO -gHe -kZi -gdO -gdO -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -tTK -fFH -rnB -tTD -tTD -tTD -onR -cUG -sLw -sXZ -qRH -vBK -nXC -sXZ -vBK -uQs -nKK -fzf -sHY -wao -gbZ -tID -uaI -wqA -xAJ -tID -tID -rzR -vBN -nEh -cUG -nMy -uwT -uwT -uwT -uwT -uwT -uwT -fWW -tlr -kcC -uwT -uwT -uwT -fHF -uJU -uJU -uJU -uJU -uJU -lPq -lPq -uzI -fxF -hgT -xyC -xYA -xYA -xYA -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -aIp -wBx -mrF -lSF -eXG -eXG -wQa -cpy -cpy -bMX -"} -(158,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -oXo -wcB -gOB -nwd -vqs -nwd -tTs -cvy -eof -dVP -vNq -uID -uID -uID -uID -mNm -mNm -nip -dVP -tiQ -saC -saC -idd -idd -cjy -rIe -saC -saC -saC -saC -cjy -cjy -idd -idd -mua -wrf -cWh -cjy -woG -woG -pZv -exd -uVL -tiQ -saC -saC -tiQ -anq -anq -anq -anq -anq -anq -anq -anq -anq -tiQ -tiQ -tiQ -saC -saC -bUN -eCe -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -cpy -ien -mbx -vGp -mRs -vGp -vGp -vGp -vGp -vGv -vGp -vGp -vGp -vGp -vGp -xgQ -frh -coZ -umR -hBe -vVB -jAz -odv -sWr -neD -sWr -oNe -hfy -dzg -xPk -pBk -kOm -ngY -ngY -jiQ -qTC -gdO -qHf -iKd -uxt -iOr -ivJ -ktk -gdO -ebU -qad -qad -qad -kCo -kCo -hob -pyC -sJQ -goW -fFH -rnB -rnB -tTD -tTD -lZZ -cUG -sLR -vpD -cSO -vpD -cSO -vpD -cSO -kJO -cSO -aqH -vPz -wao -tdL -uaI -tID -uaI -cnz -xgJ -rtY -xRw -jBt -wJm -cUG -nMy -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -uwT -uwT -fHF -waQ -snX -snX -vpp -vpp -vpp -vpp -snX -snX -wYs -hgT -qle -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -jzZ -mrF -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(159,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -pSC -xsu -akM -dLZ -akM -nwd -dTB -iTq -dVP -vNq -uID -uID -uID -uID -uID -uID -nip -saC -saC -saC -saC -saC -sVV -sVV -tiQ -tiQ -tiQ -tiQ -tiQ -sVV -sVV -sVV -tiQ -tiQ -mua -mua -tWs -tWs -tWs -tWs -mua -tiQ -tiQ -tiQ -tiQ -tiQ -rsM -nGC -nGC -nGC -nGC -nGC -nGC -nGC -oiA -tiQ -tiQ -saC -saC -saC -saC -eCe -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -ien -ien -ien -lyP -gpN -vGp -vGp -vGp -vGp -lyP -cpy -vGp -vGp -vGp -vGp -qho -cJL -frs -umR -aYi -sRu -bRK -vgx -aWi -uxD -hWP -avL -fER -yfU -bZN -pBk -afZ -avL -gyV -aYc -qZA -gdO -jbc -dBs -bHF -kpN -sJq -xWY -sQz -ryR -hRg -dvc -dxv -snx -gvn -mCo -gfM -rMW -goW -fFH -rnB -rnB -tTD -tTD -lZZ -cUG -cSO -vpD -xUe -tKF -vpD -cSO -cSO -vpD -cSO -cSO -hWz -wao -qnL -mkW -tID -cnz -kab -cUG -cUG -jsV -cUG -cUG -cUG -nMy -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -cpy -fWG -uwT -rGf -snX -snX -dxb -jCu -aTw -sGQ -oft -hRX -snX -snX -hgT -sol -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -xYA -srS -mrF -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(160,1,1) = {" -bMX -saC -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -sju -fuZ -ufY -rmb -gto -oul -sqf -jJp -tiQ -dVP -bkv -cZR -cZR -cZR -cZR -cZR -cZR -pWH -saC -saC -tiQ -saC -saC -saC -osa -osa -osa -fPs -jQs -nvj -bSk -bSk -nvj -rfT -tiQ -rIe -pcq -cjy -cjy -reZ -cjy -jYX -tiQ -jPw -jPw -nqB -nuL -ngo -wbR -wbR -wbR -wbR -wbR -wbR -wbR -oiP -opp -tiQ -saC -saC -saC -saC -eCe -eCe -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -qBQ -kyH -fbA -vGp -vGp -vGv -vGp -lyP -cpy -cpy -lyP -vGp -vGp -vGp -gRy -fax -uPl -umR -czD -rrf -tDS -bII -uqo -mos -nJw -nJw -wqU -lSN -hDV -kbK -kbK -ixI -bwA -xGV -kfI -gdO -uZt -jZW -vDa -pfN -aAj -hNY -gdO -gdO -gdO -qRY -gdO -gdO -qRY -gdO -gdO -gdO -gdO -fFH -rnB -rnB -tTD -rnB -lZZ -cUG -xlN -cSO -vpD -tKM -vpD -cSO -vpD -cSO -cSO -vpD -fEe -wao -puM -tMD -tID -wmV -cUG -cUG -nTJ -mPc -xlQ -cUG -xzK -oxO -uwT -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -fWG -uwT -rGf -vpp -iHo -kKi -ooC -ooC -ooC -fpc -oIJ -fJJ -vpp -mrF -rFT -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -rsV -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -xYA -iqX -hgT -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(161,1,1) = {" -bMX -cpy -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -jDn -nLV -kmr -oNt -oNt -tZa -wNW -tiQ -tiQ -mOe -aUl -lPx -dVP -dVP -dVP -aUl -dVP -saC -saC -saC -tiQ -osa -osa -mxQ -osa -osa -osa -osa -bvr -jMJ -kco -kco -kti -qBF -sVV -rIe -pcq -idd -cjy -cjy -cjy -jYX -tiQ -jPw -jPw -jPw -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -nhb -wbR -wbR -tiQ -saC -saC -saC -saC -saC -eCe -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -rdq -saY -vGp -rwX -vGp -vGp -vGp -cpy -cpy -cpy -cpy -vGp -syW -vGp -vGp -qSH -qSH -umR -jNB -fAq -evS -nYb -bCl -tDS -dPt -dPt -dPt -tDS -tDS -tDS -dPt -dPt -dPt -dPt -tDS -gdO -jKG -dBs -vDa -pfN -aAj -jKG -gdO -jZs -vmv -sVZ -aAj -gdO -nHU -uQW -jiv -qXN -gdO -fFH -rnB -rnB -tTD -rnB -lZZ -cUG -tKF -vpD -cSO -cSO -cSO -vpD -vpD -cSO -cSO -ngd -omX -wao -jEH -wzt -uaI -cnz -cUG -nYD -inA -qQe -inA -iTm -nMy -rmP -dyw -mhF -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -uwT -rGf -vpp -ycj -wmJ -piD -sMw -ooC -piD -piD -wzj -gfA -wDa -vJr -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -xYA -wBx -hgT -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(162,1,1) = {" -bMX -cpy -saC -saC -saC -saC -saC -saC -saC -saC -tiQ -tiQ -iMF -xng -duc -qMg -umL -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -osa -osa -osa -osa -nyZ -osa -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -pcq -idd -mee -woG -cjy -jYX -tiQ -jPw -jPw -jPw -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -tiQ -tiQ -saC -saC -saC -saC -saC -qSH -qSH -qSH -cYn -eCe -qSH -qSH -qSH -qSH -qSH -qSH -cpy -ien -ien -ien -wRp -vGp -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -vGp -qSH -qSH -qSH -umR -qSH -jNB -gxn -wRX -kjM -wRX -wRX -wRX -wRX -wRX -pRu -wRX -wRX -wRX -wRX -wRX -umg -gdO -ocv -aAj -uuH -pej -dBs -fJa -gdO -qLA -dsQ -pej -jEd -gdO -hOx -tby -oor -gdO -gdO -fFH -rnB -tTD -tTD -rnB -lZZ -cUG -cSO -tdi -sUs -cSO -cSO -vpD -cSO -cSO -sOA -cSO -vPs -wao -hBr -tID -uaI -cnz -iTm -inA -gDL -anc -inA -iTm -nMy -sKP -arW -oat -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -uwT -rGf -vpp -vwn -kKi -ooC -wUA -ugT -sMw -wzj -lBR -vpp -mrF -kFB -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -yfK -hgT -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(163,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -saC -saC -tiQ -osa -osa -osa -osa -osa -osa -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -pcq -cjy -mee -woG -cjy -jYX -tiQ -tiQ -ndP -wbR -nhb -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -saC -saC -saC -saC -saC -saC -ffG -qSH -qSH -eCe -cpy -cpy -qSH -qSH -qSH -qSH -qSH -cpy -cpy -ien -rwo -vGp -vGp -vGp -qSH -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qQB -uet -uet -uet -uet -uet -uet -uet -uet -uet -uet -uet -uet -vcn -lyP -lyP -vGp -hzx -gdO -suz -pec -pmk -aAj -jbc -uZt -gdO -riw -hOx -nxB -wLc -gdO -vzx -kAx -gdO -gdO -gjt -qaK -rnB -tTD -tTD -rnB -lZZ -cUG -cSO -cSO -jQa -cSO -cSO -cSO -cSO -cSO -vpD -cSO -vPz -cUG -uAG -uaI -bdH -ffS -iTm -dIj -kEd -nmh -lHL -iTm -nMy -fSk -blM -iaz -uwT -uwT -fWG -cpy -cpy -cpy -cpy -cpy -uwT -rGf -snX -snX -oOC -arB -nau -lVA -wzj -fMg -snX -snX -hgT -sol -xYA -xYA -xYA -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -aIp -jYr -mrF -lSF -eXG -eXG -eXG -cpy -cpy -bMX -"} -(164,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -cpy -saC -saC -saC -saC -saC -osa -osa -wOc -osa -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -pcq -cjy -woG -woG -cjy -jYX -tWs -mUh -ngo -wbR -wbR -wbR -wbR -sNQ -sNQ -wbR -wbR -wbR -wbR -qSH -cYn -saC -saC -saC -saC -saC -saC -eCe -sBX -eCe -eCe -cpy -cpy -cpy -qSH -qSH -qSH -qSH -cpy -cpy -ien -jvo -vGp -vGp -qSH -qSH -qMx -qZY -cpy -cpy -cpy -cpy -mRs -qSH -vFd -tOq -tOq -tOq -aij -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -umR -vGp -vGp -vGp -edx -gdO -gdO -gdO -gHe -kZi -gdO -gdO -gdO -gdO -gdO -gdO -gdO -gdO -gdO -gdO -gdO -xXg -qaK -rnB -rnB -tTD -tTD -rnB -tKl -cUG -cUG -aYg -kBC -vpD -vpD -cSO -vpD -vpD -vrf -nVc -cUG -cUG -cUG -ihj -lGi -eWf -cUG -dfE -inA -wTy -cUG -cUG -nMy -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -tXW -uwT -vHA -lum -snX -snX -vpp -vpp -vpp -vpp -snX -snX -oYO -hgT -gVf -xYA -xYA -xYA -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -aIp -xYA -xYA -aIp -kcR -mrF -slq -eXG -eXG -eXG -cpy -cpy -bMX -"} -(165,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -saC -osa -osa -osa -osa -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -qpn -cjy -cjy -cjy -cjy -jYX -tWs -mUl -wbR -wbR -wbR -wbR -sNQ -sNQ -wbR -wbR -wbR -wbR -qSH -qSH -qSH -saC -saC -saC -saC -saC -saC -eCe -eCe -eCe -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -ien -ien -ien -mRs -rMR -qfL -qxB -qSH -qSH -mZQ -rpm -vGp -vGv -oQC -lzU -wsC -ilC -ilC -ilC -sfI -lzU -gRD -qSH -qSH -vGp -vGp -vGp -vGp -vGp -qSH -qSH -umR -qSH -vGp -vGp -jNB -xZP -gdO -siZ -edj -jbc -gqy -gdO -lVu -xXg -kXD -kXD -kXD -kXD -kXD -kXD -kXD -qaK -rnB -rnB -tTD -tTD -tTD -ruc -fFi -wIi -cUG -cUG -cUG -oRH -oRH -oRH -oRH -oRH -cUG -cUG -cUG -cUG -cUG -cUG -cUG -cUG -cUG -cUG -iTm -iTm -cUG -xzK -nMy -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -tXW -uwT -uwT -vHA -jEJ -jEJ -jEJ -jEJ -jEJ -jEJ -cpy -cpy -nDt -hxf -xyC -xYA -aiP -xYA -xYA -xYA -aIp -aIp -aIp -xYA -xYA -aiP -xYA -xYA -aIp -aIp -aIp -aIp -aIp -xYA -aiP -xYA -wBx -hxf -aVa -eXG -eXG -eXG -cpy -cpy -bMX -"} -(166,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -saC -osa -tvu -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -pcq -jwi -cjy -cjy -cjy -jYX -qah -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -qSH -qSH -qSH -saC -saC -saC -saC -sBX -sBX -eCe -ycw -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -qSH -ien -amc -qSH -qSH -qSH -qSH -qSH -qSH -rcr -qSH -oQC -lzU -qnb -xxK -ilC -ilC -lhx -ilC -ilC -xxK -oAu -lzU -gRD -qSH -lyP -vGp -vGp -vGp -vGp -qSH -umR -qSH -vGp -vGp -vGp -wuN -sFj -siZ -vDa -pej -gqy -goW -gtM -fFH -tTD -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -rnB -tSm -rnB -xYE -wzG -qkc -vZR -kXD -kXD -lxC -lxC -lxC -lxC -bon -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -lxC -oxO -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -cpy -fWG -uwT -uwT -uwT -uwT -cpy -uwT -uwT -cpy -cpy -cpy -iWN -jxD -mrF -sTR -udA -xsq -res -sTR -udA -xsq -res -sTR -udA -xsq -res -sTR -udA -xsq -res -sTR -udA -xsq -res -sTR -mrF -sAt -svG -eXG -eXG -cpy -cpy -cpy -bMX -"} -(167,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -osa -osa -bvr -jOh -jPw -jPw -ktp -qBF -sVV -cjy -pcq -cjy -cjy -cjy -cjy -abn -qah -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -qSH -qSH -qSH -qSH -cYn -saC -saC -cYn -qSH -qSH -sBX -sDv -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -ien -poZ -qSH -qSH -qSH -qSH -qSH -qSH -qSH -oQC -qnb -ilC -ilC -nLt -bIs -bIs -qkD -mTU -mTU -nLt -ilC -dyi -oAu -gRD -qSH -lyP -vGp -vGp -vGp -vGp -umR -qSH -qSH -vGp -vGp -srp -gdO -siZ -vDa -pej -lBx -gdO -gtM -fFH -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -rnB -oXZ -rnB -rnB -tSm -uKR -kzu -rnB -rnB -rnB -tTD -tXW -tXW -fWG -fWG -fWG -fWG -uwT -uwT -uwT -uwT -fWG -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -cpy -cpy -fWG -uwT -uwT -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -iWN -jxD -mrF -mrF -mrF -wYs -wYs -wYs -dEm -nFx -wYs -bXi -brO -wYs -syU -wYs -uMr -sik -prY -sik -jMb -ifW -ifW -sAt -svG -eXG -eXG -eXG -cpy -cpy -cpy -bMX -"} -(168,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -saC -saC -osa -bvr -jOG -kdL -kdL -kwt -qBF -sVV -cjy -pcq -cjy -woG -woG -idd -abn -qah -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cYn -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -ien -ien -ien -qSH -qSH -qSH -qSH -qSH -oQC -gRj -qnb -ilC -ilC -xIv -xIv -kqT -xIv -lhx -xIv -buD -xIv -kqT -mpH -snr -oAu -lzU -gRD -qSH -vGp -vGp -vGp -qQB -uet -aoi -aoi -dcc -pFB -vNb -vCG -loe -jbc -pej -ogD -gtM -fFH -rnB -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -tTD -tTD -tSm -rnB -oXZ -uKR -rnB -rnB -rnB -rnB -rnB -rnB -uwT -fWG -fWG -fWG -fWG -uwT -uwT -uwT -uwT -fWG -fWG -tCN -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tXW -uwT -uwT -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -iWN -rnq -rnq -hgT -hgT -mrF -wYs -qXH -nFx -nFx -syU -brO -wYs -syU -wYs -uMr -wSU -jpK -mFq -ifW -rnq -rnq -svG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(169,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -kVA -ryG -dzn -dzn -ryG -qHB -sVV -cjy -pcq -cjy -woG -woG -cjy -abn -anq -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -ien -fjk -qSH -tNQ -qSH -oQC -lzU -qnb -ilC -ilC -ilC -hjN -taJ -kuA -foV -lts -lhx -mTU -xwQ -mTU -xIv -xfn -mpH -ilC -ilC -oAu -lzU -gRD -vGp -vGp -qSH -qSH -vGp -vGp -qoG -xGy -ogM -pfN -jbc -jbc -pej -hAv -gtM -fFH -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -tTD -gHN -dep -tSm -uKR -rnB -rnB -rnB -rnB -rnB -rnB -rnB -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -uwT -fWG -fWG -fWG -uwT -uwT -uwT -uwT -uwT -uwT -fWG -fWG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tXW -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -eXG -eXG -eXG -iWN -jru -jxD -hgT -hgT -crM -wDa -ffL -baN -brO -wDa -sIr -wDa -wDa -xcK -ptu -sAt -jru -svG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(170,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -saC -saC -saC -saC -saC -osa -fWF -sVV -cjy -pcq -cjy -woG -woG -cjy -ajd -anq -mUl -wbR -wbR -wbR -wbR -wbR -tiQ -tiQ -tiQ -cpy -cpy -cpy -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cYn -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -qSH -ien -igg -rMR -qSH -oQC -qnb -ilC -ilC -ilC -mTU -mTU -wRS -trD -qIW -mTU -mTU -lhx -nQk -mTU -mTU -xIv -mTU -mTU -mTU -ilC -ilC -ilC -oAu -gRD -qSH -qSH -vGp -vGp -vGp -vGp -fFv -gdO -siZ -pej -pej -gqy -gdO -gtM -fFH -rnB -rnB -rnB -rnB -rnB -rnB -tTD -tTD -tTD -rnB -rnB -tTD -tTD -mRO -uBm -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -uwT -uwT -uwT -uwT -uwT -wvd -uwT -fWG -fWG -fWG -fWG -fWG -uwT -uwT -uwT -uwT -uwT -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -eXG -cex -cex -wQa -eXG -iWN -jxD -hgT -mrF -mrF -wYs -wYs -brO -wYs -wYs -mrF -mrF -mrF -sAt -svG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -bMX -"} -(171,1,1) = {" -bMX -cpy -cpy -cpy -cpy -saC -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -osa -osa -sVV -cjy -pcq -cjy -cjy -cjy -reZ -ajd -anq -mUl -nhb -wbR -wbR -wbR -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -cYn -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -rME -ien -ien -rMR -oQC -qnb -ilC -ilC -lhx -lhx -lhx -lhx -lhx -lIT -gDO -lhx -lhx -lhx -lhx -eQa -lhx -lhx -lhx -lhx -lhx -lhx -lhx -ilC -ilC -oAu -gRD -qSH -vGp -vGp -vGp -lyP -fFv -sFj -siZ -pej -pej -gqy -goW -gtM -fFH -rnB -rnB -rnB -rnB -rnB -tTD -tTD -rbX -rnB -rnB -rnB -rnB -tTD -tTD -mRO -uBm -uKR -rnB -rnB -rnB -rnB -rnB -rnB -rnB -rnB -uwT -uwT -uwT -uwT -uwT -uwT -fWG -fWG -fWG -fWG -fWG -fWG -fWG -uwT -uwT -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -wQa -wQa -wQa -wQa -cex -cex -iWN -jru -jxD -hxf -mrF -mrF -nqI -hgT -mrF -hxf -sAt -jru -svG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -eXG -cpy -cpy -cpy -cpy -bMX -"} -(172,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -saC -tiQ -osa -osa -tiQ -jFw -jFw -jFw -jFw -jFw -jFw -jFw -tiQ -mVE -niu -wbR -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -cpy -cpy -ien -cpy -qSH -oZN -xxK -ilC -qUL -qUL -qUL -qUL -qUL -qUL -nSF -qUL -qUL -eRI -eRI -pvq -tcA -rsR -jYI -iRl -qUL -qUL -qUL -aDs -qUL -ilC -xxK -ltf -qSH -vGp -vGp -kQJ -tPb -xGy -gdO -siZ -jbc -jbc -siZ -gdO -cpy -fFH -rnB -rnB -rnB -tTD -sKJ -sKJ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rnB -rnB -rnB -rnB -yiZ -rnB -rnB -rnB -rnB -uwT -uwT -uwT -uwT -idL -uwT -fWG -tXW -tXW -idL -fWG -fWG -tXW -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -wQa -wQa -wQa -wQa -wQa -wQa -cex -iWN -jru -jxD -hgT -hgT -hgT -sAt -jru -svG -eXG -eXG -eXG -cpy -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(173,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -cpy -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cYn -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -cpy -cpy -ien -cpy -qSH -pet -ilC -xIv -qUL -qUL -qUL -qUL -qUL -qUL -pgB -pAM -lXX -qUL -qUL -oxh -mjX -uJJ -myx -pvq -tcA -rsR -jYI -uzS -qUL -lhx -ilC -jaq -vGp -vGp -lyP -cpy -cpy -cpy -alI -alI -oCn -oCn -alI -alI -cpy -cpy -rnB -rnB -gts -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rnB -rnB -rnB -rnB -rnB -rnB -cpy -cpy -cpy -cpy -idL -kjp -kjp -kjp -kjp -idL -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cex -cex -cex -wQa -wQa -wQa -cex -iWN -jru -jru -jru -svG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(174,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -cYn -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -ien -ien -ien -qSH -pFH -ilC -xIv -qUL -qUL -nSF -qUL -qUL -vYZ -fxT -bJD -rLQ -xzc -xzc -ekB -iYC -bNx -nJl -oxh -mjX -uJJ -myx -iXr -qUL -lhx -ilC -nTp -vGp -vGp -lyP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -idL -idL -idL -idL -idL -idL -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(175,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -kXu -qSH -qSH -pFH -ilC -xIv -qUL -qUL -nSF -qUL -pvq -mQb -xQE -qSt -xQE -cQL -cQL -xQE -kRo -xQE -any -ekB -iYC -bNx -ekB -keS -qUL -gIF -ilC -nTp -vGp -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(176,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -kXu -qSH -qSH -pFH -ilC -xIv -qUL -qUL -mmR -isx -moT -buB -oxS -gQC -gQC -gQC -gQC -nXg -gQC -fKa -cFc -xxv -qSt -xQE -eTw -lVs -qBH -lhx -ilC -nTp -vGp -vGp -uwF -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(177,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -kXu -qSH -qSH -pFH -ilC -xIv -qUL -qUL -xIt -wPp -qnu -biJ -vjz -vfw -nkP -nAq -nAq -uoc -mrK -vjz -vUL -gQC -gQC -gxh -fbY -qUL -tRu -lhx -ilC -nTp -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(178,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -qSH -pFH -ilC -xIv -qUL -qUL -mWv -ded -dcX -buB -pHA -gQC -gQC -gQC -gQC -gQC -gQC -lzT -oqG -kDh -hsb -olm -rAt -gOZ -cJc -lhx -ilC -nTp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(179,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -qSH -qSH -pFH -ilC -xIv -qUL -qUL -qUL -pTW -oxh -mQb -olm -hsb -rZn -cQL -cQL -olm -jFi -olm -cRJ -kYF -prc -kMF -kYF -qey -qUL -lhx -ilC -nTp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(180,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -qSH -qSH -pFH -ilC -xIv -qUL -qUL -qUL -qUL -qUL -gBD -pga -tUN -ngG -xzc -xzc -kYF -prc -kMF -cIt -pvq -hMi -wSg -jYI -sSM -qUL -lhx -ilC -nTp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(181,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -qSH -pVn -ilC -xIv -qUL -qUL -qUL -qUL -nSF -qUL -wpc -olJ -hzG -qUL -qUL -pvq -hMi -wSg -jYI -oxh -gJG -thZ -qPH -mxl -qUL -lhx -ilC -keq -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(182,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -qSH -qSH -oZN -xxK -dyi -qUL -qUL -qUL -qUL -nSF -qUL -xfu -qUL -dBd -iRl -qUL -oxh -gJG -thZ -myx -iRl -pTW -qUL -qUL -qUL -qUL -ilC -xxK -ltf -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(183,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -vGp -qSH -pYN -qqG -mpH -ilC -lhx -lhx -lhx -lhx -lhx -rAP -rAP -lhx -lhx -lhx -lhx -qkD -sCP -lhx -lhx -lhx -lhx -lhx -lhx -ilC -ilC -mil -wYJ -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(184,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -vGp -qSH -pYN -qqG -ilC -ilC -ilC -xfn -xfn -mTU -xIv -mTU -mTU -mTU -lhx -xfn -xfn -xwQ -xIv -mTU -mTU -mTU -ilC -ilC -ilC -mil -wYJ -qSH -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(185,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -oOe -vGp -qSH -qSH -pYN -qXY -qqG -ilC -ilC -ilC -wRS -uGT -mTU -mTU -oIF -qjp -ccR -iPd -mMw -xIv -mTU -ilC -ilC -ilC -mil -qXY -wYJ -qSH -qSH -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(186,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -oOe -vGp -lyP -qSH -qSH -qSH -pYN -qXY -qqG -ilC -ilC -xIv -xIv -xIv -xIv -lhx -xIv -xIv -xIv -kVh -ilC -ilC -mil -qXY -wYJ -qSH -qSH -qSH -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(187,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -vGp -vGp -qSH -qSH -qSH -qSH -qSH -pYN -qqG -ilC -ilC -ilC -mTU -mTU -lhx -mTU -mTU -ilC -ilC -ilC -mil -wYJ -qSH -qSH -qSH -qSH -qSH -vGp -lyP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(188,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -oOe -vGp -vGp -vGp -vGp -qSH -qSH -qSH -qSH -pYN -qXY -qqG -xxK -ilC -ilC -lhx -ilC -ilC -xxK -mil -qXY -wYJ -qSH -qSH -qSH -qSH -qSH -vGp -vGp -lyP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(189,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -oOe -xqj -hMK -vGp -vGp -lyP -lyP -vGp -vGp -qSH -qSH -pYN -qXY -xpH -ilC -ilC -ilC -qzE -qXY -wYJ -qSH -qSH -qSH -qSH -qSH -vGp -vGp -vGp -lyP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(190,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -oOe -lyP -vGp -vGp -vGp -vGp -vGp -vGp -vGp -vGp -qSH -qSH -xzL -lUJ -lUJ -lUJ -bcl -qSH -qSH -qSH -qSH -qSH -qSH -lyP -lyP -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(191,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -lyP -lyP -vGp -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(192,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(193,1,1) = {" -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -"} diff --git a/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json b/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json new file mode 100644 index 00000000000..4e050d2aa92 --- /dev/null +++ b/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json @@ -0,0 +1,48 @@ +{ + "map_name": "LV-522 Chance's Claim", + "short_name": "Chance's Claim", + "map_path": "map_files/LV522_Chances_Claim", + "map_file": "LV522_Chances_Claim.dmm", + "webmap_url": "LV552", + + "weather_holder": "/datum/weather_ss_map_holder/lv522_chances_claim", + "survivor_types": [ + "/datum/equipment_preset/survivor/forecon/standard" + ], + "synth_survivor_types": [ + "/datum/equipment_preset/synth/survivor/forecon" + ], + "CO_survivor_types": [ + "/datum/equipment_preset/survivor/forecon/major" + ], + "defcon_triggers": [ + 3300, + 2100, + 1450, + 580, + 0.0 + ], + "survivor_message": "You are USCM Force Reconnaissance (FORECON) marine from the USS Hanyut, stranded on this planet after your team was wiped out while investigating the distress signal. With your pilot dead along with the majority of your unit, you and your team have been running and gunning to survive... but with supplies low and food running out maybe your only means of survival is to move west to the crashed dropship to salvage anything useful.", + "announce_text": "Pan-Pan. This is the commanding officer of the USS Hanyut, USCMC FORECON. We are currently grounded on planet LV-522 in the immediate area of Chance's Claim. We are unable to contact the Hanyut and our dropships are unable to take off at this time. We are requesting assistance from any nearby vessels; this broadcast is set to repeat every 24 hours.", + "map_item_type": "/obj/item/map/lv522_map", + "monkey_types": [ + "neaera", + "stok" + ], + "environment_traits": { "Fog": true }, + "traits": [{ "Ground": true }], + "xvx_hives": { + "xeno_hive_alpha": 0, + "xeno_hive_bravo": 0, + "xeno_hive_charlie": 0, + "xeno_hive_delta": 0 + }, + "camouflage": "jungle", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +} From 068001b8d60d980ec739eb37d660cd13c1b39b33 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Tue, 19 Nov 2024 00:41:14 -0600 Subject: [PATCH 26/40] FUCKING WORK YOU BASTAAARD --- .../LV522_Chances_Claim.dmm | 95569 ++++++++++++++++ .../lv522_chances_claim.json | 48 - 2 files changed, 95569 insertions(+), 48 deletions(-) create mode 100644 maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm delete mode 100644 maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm new file mode 100644 index 00000000000..6b0f28bc5f2 --- /dev/null +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -0,0 +1,95569 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaP" = ( +/obj/item/prop/helmetgarb/lucky_feather{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/device/implanter/subdermal_armor, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"aaR" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 10; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"aaT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"aaX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/outdoors/n_rockies) +"aba" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"abc" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"abj" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"abo" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/oob) +"abp" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"abt" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"abv" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "100" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"abL" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"abS" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"ach" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"aci" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"aco" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"acp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_2/ceiling) +"act" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"acB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"acD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"acE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/bridge) +"acH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/foamed_metal{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"acJ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/gm/river, +/area/lv522/oob) +"adh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"adk" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"adl" = ( +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"adz" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"adA" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"adI" = ( +/obj/structure/ladder{ + icon_state = "ladder10"; + id = "hatch" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"adL" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"adN" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/gm/river, +/area/lv522/oob) +"adP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"aea" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/n_rockies) +"aee" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/b_block/bridge) +"aew" = ( +/obj/structure/prop/vehicles/crawler, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aeE" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"aeO" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 2.9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aeY" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"aeZ" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"afa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"afp" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/oob) +"afr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"aft" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"afz" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"afI" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -21; + pixel_y = -9 + }, +/obj/item/weapon/gun/boltaction{ + pixel_x = -5; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"afL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"afM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"afS" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"agn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"agu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"agG" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + name = "\improper Chunk 'N Dump" + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"aht" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ahA" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ahP" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"ahT" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 18 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ahU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"ahV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"ahW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"ahX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"ahZ" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"aij" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"aiw" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"aiO" = ( +/obj/structure/window_frame/corsat, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"aiP" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"aiQ" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/outdoors/colony_streets/central_streets) +"aiX" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"aiY" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ajg" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ajn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"ajz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/machinery/microwave{ + pixel_y = 18 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"ajM" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/turf/closed/wall/strata_outpost, +/area/lv522/oob) +"ajN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"ajR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"akh" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"akl" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"akp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"akM" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"akN" = ( +/obj/item/clothing/head/hardhat/white, +/obj/item/prop/alien/hugger{ + pixel_x = 11; + pixel_y = -9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"akO" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Equipment" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"akT" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"akV" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"alh" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"alx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"alI" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/lv522/oob) +"amc" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"amp" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"amv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"amG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"amK" = ( +/obj/structure/machinery/microwave, +/obj/structure/machinery/microwave{ + pixel_y = 13 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"amP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"amV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"amW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"amY" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"anc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"ani" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 12; + pixel_y = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -13; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"ank" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"ann" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"anr" = ( +/obj/item/clothing/suit/storage/marine/medium, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"anv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/cranberry{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"anG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"anM" = ( +/obj/structure/machinery/defenses/sentry/premade/dumb{ + desc = "A deployable, semi-automated turret with AI targeting capabilities. Armed with an M30 Autocannon and a high-capacity drum magazine. This one's IFF system has been fried via acid damage, and it will open fire on any targets within range."; + name = "Damaged UA-577 Gauss Turret" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"aoi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"aov" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"aoG" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/seeds/potatoseed, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"aoW" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"aoZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"ape" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"aph" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"apk" = ( +/obj/structure/prop/vehicles{ + icon_state = "truck_damaged" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"apJ" = ( +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/m4ra/ext{ + current_rounds = 0 + }, +/obj/structure/closet/crate/ammo, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"apS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"aqe" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aqn" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"aqt" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"aqv" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"aqD" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/obj/item/explosive/plastic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"aqH" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"ari" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"arm" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"arn" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"aro" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/coffee{ + layer = 3.1; + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"arq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/burger, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"arv" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ary" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"arG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"arM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"arV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"ash" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"ask" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"asn" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/w_rockies) +"ast" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"asz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"asF" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"asI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"asL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"ato" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"atE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"atH" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"atM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/east_reactor/south) +"atQ" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"atR" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"auv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"auw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"auG" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/nw_rockies) +"auS" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) +"auX" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"ave" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"avg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"avq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"avX" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"awj" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"awx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"awI" = ( +/obj/item/explosive/plastic/breaching_charge{ + unacidable = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"awK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"awL" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"awR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"axr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"axy" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"axD" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"axN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"axZ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"ayc" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"ayd" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"ayu" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"ayz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ayW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"aze" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"azk" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"azp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"azz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"azD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"azE" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"azJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"azK" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"aAl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"aAF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"aAI" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"aAN" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"aBo" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"aBt" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"aBE" = ( +/obj/item/prop/colony/canister, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"aBM" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"aBQ" = ( +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"aBY" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"aCL" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aCN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"aCT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"aDc" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"aDh" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"aDq" = ( +/obj/structure/machinery/door/airlock/almayer/engineering, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"aDs" = ( +/obj/item/explosive/mine/active{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"aEf" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"aEk" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"aEx" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"aEz" = ( +/obj/item/prop/alien/hugger, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"aEF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"aFa" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aFe" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aFm" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aFs" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aFN" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"aGE" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/buritto, +/obj/item/trash/wy_chips_pepper, +/obj/item/trash/syndi_cakes, +/obj/item/trash/pistachios, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"aGH" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"aGM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"aGN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"aGS" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"aHa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 1; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 16; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_x = 16; + pixel_y = 16 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + pixel_x = -2; + pixel_y = -6; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"aHq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"aHs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"aHv" = ( +/obj/item/stack/sheet/wood/large_stack, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"aHH" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"aHU" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"aHW" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"aIf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/weapon, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"aIp" = ( +/turf/open/floor/plating, +/area/shuttle/drop2/lv522) +"aIr" = ( +/turf/closed/shuttle/elevator{ + dir = 5 + }, +/area/lv522/indoors/c_block/mining) +"aID" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"aIJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"aIR" = ( +/obj/structure/prop/server_equipment/yutani_server/off, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"aJf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"aJk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"aJy" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aJB" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"aJV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"aJW" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + layer = 4.3; + pixel_y = 13 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aKG" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red{ + pixel_x = -7; + pixel_y = 26 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"aKW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"aLc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"aLr" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aLx" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"aLJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"aMt" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"aMx" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aMG" = ( +/obj/structure/prop/turbine_extras/border, +/obj/structure/prop/turbine, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"aMH" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"aMP" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"aMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"aNd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"aNf" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"aNn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"aNr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"aNw" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"aNV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/item/device/radio/marine{ + pixel_x = 10; + pixel_y = 22 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"aNW" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aOi" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -14 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"aOj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"aOt" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"aOu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"aOz" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"aPc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"aPe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"aPo" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aPs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"aPt" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"aPx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"aPB" = ( +/obj/structure/largecrate/random/barrel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"aPK" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"aPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"aPY" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"aPZ" = ( +/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 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"aQI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"aQK" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"aQY" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"aRh" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) +"aRC" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"aRH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"aRN" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"aRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"aRX" = ( +/obj/structure/bed/bedroll{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_smartgunner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"aSb" = ( +/obj/structure/girder, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"aSc" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aSg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"aSt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"aSE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"aST" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_x = -20 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"aSZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/bridge) +"aTa" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"aTj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"aTm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"aTw" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"aTA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"aTH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"aTM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/nam{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/device/cassette_tape/pop4{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"aTP" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"aTV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"aUi" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"aUk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"aUp" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"aUw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"aUy" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"aUB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"aUF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"aUI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"aVa" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"aVg" = ( +/obj/structure/platform/strata, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"aVj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"aVA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"aVJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"aVL" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southwest, +/area/lv522/indoors/a_block/dorms) +"aVX" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"aWl" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"aWv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sandwich{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"aWA" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"aWE" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"aWH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper/janitor, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"aWU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"aXi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"aXx" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"aXD" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"aXH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"aXX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"aYd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"aYe" = ( +/obj/item/trash/wy_chips_pepper, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"aYg" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"aYm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"aYt" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"aYD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"aYM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"aYO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"aYU" = ( +/obj/item/ammo_box/magazine/misc/mre/empty, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"aZj" = ( +/obj/structure/plasticflaps, +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"aZy" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"aZD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"aZK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"bac" = ( +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = -2; + pixel_y = -13 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Two original, crisp, orange, tickets."; + name = "\improper Arcade Tickets"; + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/crowbar/red{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"baN" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"baQ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) +"baS" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"bbd" = ( +/obj/structure/closet/crate, +/obj/item/tool/shovel, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"bbh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"bbP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"bbQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"bca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"bcf" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"bcl" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"bcS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"bdg" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"bdo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bdH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"bdU" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"bec" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"bee" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/admin) +"beh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"beq" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) +"bev" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"bex" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"bey" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) +"beB" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/corpo/glass) +"beD" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"beS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"beY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"bfE" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"bfH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"bfL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan4/north, +/area/lv522/indoors/a_block/medical) +"bfR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"bgc" = ( +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"bgd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bgC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"bgF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"bgL" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_west_street) +"bgM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bgY" = ( +/obj/structure/surface/rack, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/structure/machinery/light/double, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"bha" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"bhf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"bhi" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"bhs" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"bht" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/east_central_street) +"bhv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"bhw" = ( +/obj/structure/surface/rack, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"bhE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bhQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bhZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"bia" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"big" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"bih" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"biq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"biu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"biE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"biJ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"biL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"biN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"biQ" = ( +/obj/item/stack/sheet/metal, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"biV" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"bjb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"bjd" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/sewer) +"bjm" = ( +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"bjn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"bjx" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bjI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"bjS" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "100" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bjV" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"bjX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bkl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"bkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/headset{ + armor_bio = 20; + armor_bomb = 10; + armor_bullet = 20; + armor_internaldamage = 20; + armor_laser = 15; + armor_melee = 20; + armor_rad = 10; + desc = "A headset typically found in use by radio-operators and officers. This one bears a purple stripe down its side."; + name = "\improper personalized USCM headset" + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"bkE" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/nw_rockies) +"bkM" = ( +/obj/structure/closet/secure_closet/quartermaster, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"bkO" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"blj" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"blA" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"blG" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"blM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"blP" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/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/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"bmj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"bmk" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/outdoors/colony_streets/south_west_street) +"bmJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + layer = 3.1 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/tofubreadslice{ + pixel_x = -7 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bmP" = ( +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"bmT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"bnd" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"bnq" = ( +/obj/structure/largecrate/supply/supplies/metal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"bnB" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"bnI" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"bnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"bnP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"bnR" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"bof" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Chief Engineer Office"; + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"bon" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"bop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/almayer/w_y2/north, +/area/lv522/atmos/way_in_command_centre) +"bou" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"bow" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"boy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bridge) +"boA" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"boQ" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"boW" = ( +/obj/structure/barricade/handrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"bpe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"bpj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"bpl" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "69" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bpm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"bpo" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"bpN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"bpU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"bqo" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"bqA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"bqW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"brk" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"brE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"brL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"brO" = ( +/obj/structure/window_frame/strata, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"brV" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"brW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"bsc" = ( +/obj/structure/surface/table/almayer, +/obj/item/cpr_dummy, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"bsj" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"bsq" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bsz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"bsD" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"bsG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/bridge) +"bsT" = ( +/turf/closed/shuttle/dropship3/tornado, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bsY" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"btL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/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/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bub" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = -4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"buc" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) +"buh" = ( +/obj/structure/machinery/light/double, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"buw" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"buz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"buD" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"buP" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"buZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bvw" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"bvB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"bvJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"bvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"bvX" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Kitchen"; + pixel_y = -6 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bvZ" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"bwd" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/toy/beach_ball{ + pixel_x = -12; + pixel_y = -4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bwl" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"bwF" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bwG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"bwI" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bwT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"bxr" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"bxF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"bxJ" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bxM" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"bxQ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bzw" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Dorms"; + pixel_y = 26 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"bzC" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/cargo_intake) +"bzL" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"bzZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bAe" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"bAn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"bAt" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"bAy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"bAU" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"bBm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"bBt" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"bBI" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"bBN" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bCl" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"bCn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"bCE" = ( +/obj/item/storage/backpack, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"bCI" = ( +/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 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"bCK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"bCM" = ( +/obj/structure/dispenser, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"bCQ" = ( +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"bCY" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bDb" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "99" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bDo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"bDq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bDr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"bDR" = ( +/obj/item/explosive/grenade/high_explosive, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"bEa" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"bEu" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Tornado' flight controls"; + network = null; + pixel_y = 21 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bED" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"bEM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bFn" = ( +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"bFz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/northwest, +/area/lv522/indoors/a_block/medical/glass) +"bFE" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bFZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"bGi" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "30" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"bGn" = ( +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"bGO" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/structure/machinery/vending/cola{ + layer = 3.1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bGT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"bHc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bHA" = ( +/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/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"bHF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"bHI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"bHO" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"bHV" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"bId" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"bIe" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"bIo" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) +"bIq" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bIr" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/north) +"bIt" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"bIw" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"bIz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bID" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"bIH" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/east_central_street) +"bIJ" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/atmos/cargo_intake) +"bIM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"bIN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"bIO" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bIS" = ( +/obj/structure/filtration/machine_96x96/distribution{ + density = 0; + pixel_y = 16 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"bJK" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"bJN" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"bJZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"bKf" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"bKq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"bKQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"bLl" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"bLo" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/outdoors/colony_streets/central_streets) +"bLH" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"bMk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"bMl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"bMx" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) +"bMz" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"bMB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"bMN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 12; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"bMT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"bMX" = ( +/turf/closed/shuttle{ + dir = 1; + icon_state = "pwall" + }, +/area/lv522/oob) +"bNf" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"bNy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"bNE" = ( +/obj/item/tank/oxygen{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"bNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bNN" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"bNV" = ( +/obj/item/storage/firstaid/o2, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"bOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bOi" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"bOu" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"bOz" = ( +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"bOE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"bOG" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"bOP" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"bOZ" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"bPs" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"bPA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"bPE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"bPH" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"bQc" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"bQv" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"bQw" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"bQx" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"bQG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"bQX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"bRm" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"bRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 9; + pixel_y = 17 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"bRs" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"bRt" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "28" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bRK" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/bridges/op_centre) +"bRP" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"bSa" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"bSP" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"bSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"bTo" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"bTT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"bTU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"bUf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"bUv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"bUy" = ( +/obj/structure/closet/secure_closet/marshal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bUz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"bUA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"bUN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"bUR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"bUV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"bVf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"bVh" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"bVu" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + layer = 3.1; + pixel_y = 24 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"bVC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"bVG" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"bVK" = ( +/obj/structure/surface/rack, +/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"; + pixel_x = 5; + registered_name = "John Forklift" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"bWd" = ( +/obj/structure/flora/jungle/planttop1, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"bWo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"bWt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"bWv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"bWy" = ( +/obj/structure/machinery/light/double/blue{ + dir = 4; + pixel_x = 10; + pixel_y = 13 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"bWA" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 4; + pixel_x = -4; + pixel_y = 11 + }, +/obj/structure/sink/puddle{ + layer = 2.1 + }, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"bWB" = ( +/obj/structure/machinery/door_control{ + id = "Marked_6"; + name = "Cargo Shutter Control"; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "Weyland classified intelligence folder"; + pixel_y = -2 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"bWE" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/roller, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"bXb" = ( +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"bXe" = ( +/obj/structure/pipes/vents/pump, +/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 = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"bXN" = ( +/obj/structure/closet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"bXO" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"bXS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"bXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/computers/sensor_computer3{ + density = 0; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"bXZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"bYm" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"bYn" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"bYy" = ( +/obj/item/paper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"bYI" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"bYK" = ( +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"bYP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"bYR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"bYS" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4; + pixel_y = 29 + }, +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"bYV" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"bYZ" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"bZd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"bZm" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"bZn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"bZx" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"bZA" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 + }, +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"bZB" = ( +/obj/structure/girder/displaced, +/turf/open/floor/corsat, +/area/lv522/atmos/outdoor) +"bZI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"bZJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"bZK" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"bZO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"bZQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"bZW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"cau" = ( +/obj/structure/machinery/light, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"cav" = ( +/obj/item/weapon/gun/rifle/mar40/carbine, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"caB" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/east_central_street) +"caE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"caF" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"caO" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"caU" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -9; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"cba" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box/empty{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"cbj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"cbs" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cbv" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + layer = 3.1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"cbW" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"cci" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Community Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"ccp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"ccr" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"cct" = ( +/obj/structure/bed/chair/wood/normal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ccw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"ccy" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ccN" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"ccQ" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 7; + pixel_y = -12 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"cdb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"cdj" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cdm" = ( +/obj/structure/closet/crate/freezer{ + layer = 3 + }, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/obj/item/reagent_container/food/snacks/grown/orange, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"cdN" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"cdT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"cem" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bar) +"cex" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/landing_zone_2) +"ceE" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"ceG" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/obj/item/trash/buritto, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"ceK" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"ceV" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ceW" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"cfj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"cfF" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cfJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"cfN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"cfT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"cfV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"cgi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_2/ceiling) +"cgk" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_2/ceiling) +"cgn" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"cgO" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cgT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock"; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"che" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"chm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) +"chL" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"chP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) +"chR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"chX" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Northern Dorms"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"cid" = ( +/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 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"cio" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"ciw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"ciC" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant James 'Four eyes' Brown" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"ciE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ciS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"ciX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cjb" = ( +/obj/vehicle/train/cargo/engine{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"cjc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"cjh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"cjt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"cjv" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"cjE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"cks" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ckz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"ckE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ckL" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"clf" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"clg" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_west_street) +"clp" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"cly" = ( +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"clB" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/west_reactor) +"clQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"clY" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"cmo" = ( +/obj/structure/window_frame/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"cmv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"cmB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cmF" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + 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 = 8; + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"cmI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"cnk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cno" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"cnC" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"cnI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"cnJ" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -9 + }, +/obj/structure/machinery/suit_storage_unit{ + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"cnP" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "95" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"cnR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/trash/plate{ + pixel_x = 6 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"cnX" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) +"coj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"coD" = ( +/obj/structure/prop/server_equipment{ + icon_state = "rackframe_broken" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"cpi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"cpx" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"cpy" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"cpG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Colony Operations Centre"; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"cpJ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"cpT" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"cpX" = ( +/obj/item/toy/beach_ball/holoball, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = 5; + pixel_y = -11 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"cqa" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cqb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"cqc" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"cqe" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"cql" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"cqo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"cqs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) +"cqx" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"cqW" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "86" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cro" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"crw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/tool/wrench{ + pixel_y = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"crM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"crP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"crT" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"crU" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/effect/decal/cleanable/cobweb, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cse" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"csp" = ( +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"csI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"csU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"cti" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"ctk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"ctn" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"ctr" = ( +/obj/structure/target{ + name = "punching bag" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ctE" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/lv522/oob) +"ctM" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"cua" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"cup" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"cuK" = ( +/obj/item/hardpoint/locomotion/van_wheels{ + desc = "Integral to getting shreaded"; + name = "Lifting weights" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cuQ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"cuX" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"cvc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) +"cve" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"cvi" = ( +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"cvM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"cvT" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"cwt" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"cwy" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"cwE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"cwG" = ( +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"cwL" = ( +/turf/closed/wall/shiva/prefabricated, +/area/lv522/landing_zone_2) +"cwN" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"cwO" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cxa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"cxi" = ( +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"cxo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"cxu" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cxD" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"cxJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cxL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"cya" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/north) +"cyh" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"cyF" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"czd" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"czA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/w_y2/north, +/area/lv522/oob/w_y_vault) +"czB" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"czC" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/east) +"czF" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"czG" = ( +/obj/structure/sign/safety/radio_rad{ + pixel_y = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"czO" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/pamphlet/skill/powerloader, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"czW" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 12 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"czY" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"cAh" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"cAk" = ( +/obj/structure/pipes/vents/pump, +/obj/vehicle/powerloader, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"cAr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"cAN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"cAP" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"cAU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"cAX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"cAY" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"cBl" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cBr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"cBS" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"cCa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/gloves/marine, +/obj/item/tool/weldingtool{ + pixel_x = -4 + }, +/obj/item/tool/weldpack{ + pixel_x = 14; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"cCH" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"cCN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"cDd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"cDe" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9; + layer = 2.9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"cDg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"cDi" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"cDv" = ( +/obj/structure/ore_box{ + pixel_x = -4 + }, +/obj/structure/ore_box{ + layer = 3.2; + pixel_x = -11; + pixel_y = 23 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"cDy" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"cDH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"cDM" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"cDN" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"cDQ" = ( +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = 3; + pixel_y = 15 + }, +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"cEj" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"cEr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cEv" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"cEG" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cEJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"cEN" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"cEO" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"cFR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cGh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cGy" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"cGV" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"cGY" = ( +/obj/item/tool/wrench, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cHg" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"cHj" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cHX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"cHZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"cIf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"cIi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"cIr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cIA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"cIF" = ( +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"cIO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) +"cJm" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"cJs" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"cJy" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"cJA" = ( +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"cKp" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor/north) +"cKw" = ( +/obj/structure/girder, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) +"cKy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) +"cKB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/storage/briefcase, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"cKC" = ( +/obj/structure/girder/displaced, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) +"cKF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"cKG" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/nw_rockies) +"cKI" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"cKQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cKS" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cLg" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"cLi" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"cLp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"cLv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"cLB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"cLN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"cMc" = ( +/obj/item/clothing/head/hardhat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cMg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"cMJ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"cMO" = ( +/obj/structure/closet/crate, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/item/ore/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cNb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"cNh" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"cNv" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"cNA" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) +"cNE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"cNF" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"cNO" = ( +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"cNP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"cNT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"cNU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway/damage) +"cNV" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/north_command_centre) +"cOs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"cOt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cOx" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"cOC" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "19" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"cOF" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"cOP" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"cOR" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"cPc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"cPi" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"cPx" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/corsat, +/area/lv522/atmos/filt) +"cPB" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"cPW" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_1"; + name = "treadmill switch"; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"cQm" = ( +/obj/structure/surface/table/reinforced/prison, +/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/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"cQz" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"cQB" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cRk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"cRx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"cRO" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cSg" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"cSw" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"cSC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"cSJ" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Southeast Landing Zone" + }, +/turf/open/floor/plating, +/area/shuttle/drop2/lv522) +"cSO" = ( +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"cSR" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"cTB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"cTG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"cTK" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"cTM" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"cTU" = ( +/obj/structure/curtain/red, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"cTX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cTZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"cUg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cUl" = ( +/obj/item/stack/cable_coil/cut, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) +"cUo" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) +"cUp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"cUv" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"cUG" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/garage) +"cUL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"cUY" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"cVp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"cVy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"cWa" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"cWc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"cWf" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/atmos/cargo_intake) +"cWh" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Corporate"; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"cWy" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"cWP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"cWR" = ( +/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/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"cXc" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"cXo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"cXq" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/machinery/autolathe, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"cXF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"cYn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"cYu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"cYE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"cYN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"cYQ" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"cZd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"cZx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"cZH" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv522/atmos/sewer) +"cZQ" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"dam" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"day" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"daC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"daI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"dbh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"dbv" = ( +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"dbA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"dbC" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"dbF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"dbG" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 21 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"dbP" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"dbQ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"dbR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"dcb" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) +"dcc" = ( +/obj/structure/cargo_container/kelland/left, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"dcl" = ( +/obj/structure/machinery/sleep_console, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"dco" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"dcv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"dcC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dcV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ddb" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/item/clothing/under/overalls, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ddz" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ddB" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ddH" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ddK" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -6; + pixel_y = 18 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 9; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ddM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/south/grey, +/obj/item/clothing/under/swimsuit/green{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/prop/alien/hugger{ + pixel_x = -9 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"ddU" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"dek" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cargo_container/ferret/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"den" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"dep" = ( +/obj/structure/prop/structure_lattice{ + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"der" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) +"des" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "46" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dew" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"deO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"deR" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"deW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) +"dfb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dfk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"dfE" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/weapon/gun/pistol/holdout{ + pixel_y = 31 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"dgb" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) +"dgR" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"dha" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"dhf" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"dhi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"dhm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"dho" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"dhq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"dhP" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"dhX" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) +"dir" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"diy" = ( +/obj/structure/filtration/machine_64x128{ + icon_state = "filtration_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"diK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"dja" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"djm" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"djB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"djM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"djT" = ( +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"djW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"djY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"dkd" = ( +/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/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dkq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"dku" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"dkB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"dkC" = ( +/obj/structure/cryofeed/right, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) +"dkX" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"dln" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dlo" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"dlG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/mre_pack/meal1{ + desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; + name = "\improper UA Prepared Meal (cornbread)"; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"dlJ" = ( +/obj/structure/closet/crate/miningcar/yellow, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dlL" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"dlP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Break Room"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"dlX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"dmm" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = -8 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"dmv" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"dmz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"dmG" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dmK" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"dmU" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"dmY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dnh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"dnH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond{ + amount = 2 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"dnM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"doj" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"doo" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) +"dox" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5"; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"doF" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"doK" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dpk" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"dpl" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_3"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_6"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"dpp" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"dpJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"dpL" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"dpN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"dpW" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dqh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dqi" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"dqr" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dqu" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"dqC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"drl" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "23" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"drq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"drx" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"drz" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/hatchet, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"drA" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"drP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dsl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dsr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"dsu" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"dsv" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"dsA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"dsG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"dsJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"dsL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/sentry_computer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"dsQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"dsS" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dsW" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"dtk" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"dtq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dts" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dtF" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"dtT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"dug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/gloves/boxing/blue{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"duw" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/coagulation/icon2_0, +/area/lv522/oob) +"duM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"duV" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"duW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"duY" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dvh" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"dvp" = ( +/obj/structure/largecrate/supply, +/obj/structure/largecrate/supply{ + layer = 3.2; + pixel_x = 10; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"dvC" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/cell/high{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"dvE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"dvI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = -8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"dvO" = ( +/obj/structure/platform_decoration/strata, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"dvR" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"dvY" = ( +/obj/item/stack/sheet/wood, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"dwd" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"dwo" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dwI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"dwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 15; + pixel_y = -8 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 10; + pixel_y = -13 + }, +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burger{ + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/t_comm) +"dwR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dwU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"dwV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"dxc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -20; + pixel_y = 13 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/east_reactor/south) +"dxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dxE" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"dxQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"dxV" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"dyc" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "101" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dyq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/overwatch/almayer/broken{ + dir = 8; + pixel_x = -12; + pixel_y = 1 + }, +/obj/item/storage/backpack/marine/satchel/rto/small{ + pixel_x = 7; + pixel_y = 19 + }, +/obj/structure/machinery/door_control{ + id = "UD6 East"; + name = "Cargo Shutter Control"; + pixel_y = -4 + }, +/obj/item/clothing/head/headset{ + pixel_x = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"dyv" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/girder/reinforced, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dyF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"dyZ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/snacks/cheesyfries, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dzj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dzr" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) +"dzD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/minihoe{ + pixel_y = -2 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"dzU" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"dAo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"dAt" = ( +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dAu" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"dAy" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"dAT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = -12; + pixel_y = 4 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 14; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"dBd" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"dBn" = ( +/obj/item/tool/lighter/zippo{ + layer = 3.1; + pixel_x = 12; + pixel_y = 18 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"dBu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dBC" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dBD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dBJ" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"dBM" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"dBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"dBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"dBY" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"dCd" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"dCq" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/leafybush{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dCy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dCF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"dCR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"dCU" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/fernybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"dCY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"dCZ" = ( +/obj/structure/largecrate/random/barrel{ + layer = 2.9 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"dDb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"dDq" = ( +/turf/closed/wall/shiva/prefabricated, +/area/lv522/landing_zone_2/ceiling) +"dDS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"dEc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dEd" = ( +/obj/item/prop/alien/hugger, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Bar & Grill"; + pixel_x = -16 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dEm" = ( +/obj/structure/closet, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"dEp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = -26; + pixel_y = -13 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"dEP" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/obj/item/trash/wy_chips_pepper, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"dFd" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"dFg" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"dFn" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/structure/safe/floor{ + pixel_y = -6; + spawnkey = 0 + }, +/obj/item/clothing/under/redcoat, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"dFw" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"dFy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"dFz" = ( +/turf/closed/shuttle/elevator{ + dir = 6 + }, +/area/lv522/indoors/c_block/mining) +"dFH" = ( +/obj/structure/machinery/power/port_gen/pacman{ + layer = 3.1; + pixel_y = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"dFR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"dFT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"dGf" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"dGq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"dGs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"dGw" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/clothing/under/suit_jacket/stowaway, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"dGD" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"dHa" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue{ + pixel_y = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dHf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"dHj" = ( +/obj/item/device/flashlight, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"dHy" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/red, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"dHH" = ( +/turf/open/floor/coagulation/icon8_0, +/area/lv522/oob) +"dHO" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"dHR" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + pixel_x = 16 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"dIg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/surgery/scalpel/manager, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"dIi" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"dIj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"dIH" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"dIK" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"dIS" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "32" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"dJn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/restraint/adjustable/cable/white, +/obj/item/restraint/adjustable/cable/white{ + pixel_y = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"dJs" = ( +/obj/item/tool/pen/red/clicky, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"dJt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"dJw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"dJz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"dJC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"dJG" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/west) +"dJJ" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 16 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"dJX" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dKd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"dKE" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dKH" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"dKO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/east) +"dLm" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = -14; + pixel_y = -2 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dLw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"dLA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"dLB" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dLC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"dLF" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dLK" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/security) +"dLX" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"dLZ" = ( +/obj/item/storage/box/guncase/m3717, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) +"dMg" = ( +/obj/structure/platform_decoration, +/obj/structure/bed/roller, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dMl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"dMt" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"dMI" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"dMU" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dMY" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"dNc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dNm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"dNy" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"dOa" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/north) +"dOk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock"; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"dOm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"dOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"dOx" = ( +/obj/structure/prop/invuln/minecart_tracks{ + layer = 2.6 + }, +/obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"dOF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/game, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"dOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"dPr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"dPA" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"dPG" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"dQe" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"dQn" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) +"dQr" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"dQs" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dRm" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" + }, +/obj/item/storage/belt/gun/m44/custom, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"dRL" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/dorm_north) +"dRM" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"dRR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"dRX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"dSb" = ( +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + name = "supply crate" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"dSf" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"dSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dSU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"dTg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -9; + pixel_y = 5 + }, +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dTn" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"dTv" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dTy" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"dTJ" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"dTY" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"dUs" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dUx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"dUB" = ( +/obj/structure/prop/server_equipment, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"dUS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -18 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"dUW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"dUY" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"dVu" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dVw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dVL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"dVM" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"dVP" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dWc" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"dWn" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"dWt" = ( +/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/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"dWD" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"dWI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"dWU" = ( +/obj/structure/machinery/computer/operating, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"dXa" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/nw_rockies) +"dXi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"dXl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"dXt" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"dXA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"dXI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/flask/detflask{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/clothing/head/det_hat, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"dXT" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"dYg" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dYh" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"dYA" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"dYB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"dYK" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"dYM" = ( +/obj/structure/platform, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"dYR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/wooden, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"dYY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"dZc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"dZh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"dZq" = ( +/obj/structure/closet/crate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"dZs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) +"dZx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/donut{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"dZz" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"dZH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) +"dZN" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"dZP" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"ead" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "102" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eao" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"eap" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Casino"; + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"eaw" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"eax" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"eay" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) +"eaB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"eaC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"eaE" = ( +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"eaR" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"ebA" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/trash/uscm_mre, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"ebM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Showeroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"ecr" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"edt" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"edz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"edQ" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"eeo" = ( +/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 = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"eeL" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"eeY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"efn" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"efo" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/oob) +"efH" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"efK" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_y = -7 + }, +/obj/item/bananapeel{ + 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 = -7 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"egy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"egz" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"egM" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"egV" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"egW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen/damage) +"ehy" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/hallway) +"ehO" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"ehT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"eic" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"eif" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"eiC" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1) +"eiZ" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"ejd" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"eje" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"ejs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eju" = ( +/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/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"ejA" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"ekh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"ekx" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/extinguisher, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"ekA" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"ekO" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"elb" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"elf" = ( +/obj/structure/machinery/door_control{ + id = "UD6"; + name = "Cargo Shutter Control" + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "53" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"elg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"elq" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"elz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"elF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"elW" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "49" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"emb" = ( +/obj/item/ammo_magazine/smartgun{ + current_rounds = 249 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"emc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/t_comm) +"emh" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"emj" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw" + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 7 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 6 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 2 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 3 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = 9 + }, +/obj/item/reagent_container/food/snacks/grown/wheat{ + name = "straw"; + pixel_x = -6 + }, +/obj/item/clothing/suit/storage/bomber/alt, +/obj/item/clothing/suit/storage/bomber/alt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"emm" = ( +/obj/structure/prop/invuln/ice_prefab, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2"; + pixel_x = 3 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"emy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"emz" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"emQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"emS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"eng" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"enl" = ( +/obj/item/seeds/riceseed, +/obj/structure/closet/crate, +/obj/item/seeds/riceseed, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"ent" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"enL" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"enP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"enS" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"eof" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"eok" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"eoq" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "45" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"eoN" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"epi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"epo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"epA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"epU" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"eqd" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eql" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "77" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eqC" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eqG" = ( +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"eqI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"eqP" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "24" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"err" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"eru" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Armory" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Armoury-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"erA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"erH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"erU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"erW" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"esa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"esk" = ( +/obj/structure/closet/crate, +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"eso" = ( +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"esw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/matches{ + pixel_y = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"esO" = ( +/obj/structure/largecrate/random/barrel{ + layer = 5.1; + pixel_x = 13; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"esV" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"etb" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"etc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"ete" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"etk" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + layer = 3.5; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"ets" = ( +/obj/structure/machinery/bioprinter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"etx" = ( +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"etB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"etF" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"etJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"eub" = ( +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"euk" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"eur" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"eus" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"euv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"euO" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"evf" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"evj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"evt" = ( +/turf/open/floor/bcircuit, +/area/lv522/atmos/east_reactor/south) +"evJ" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"evQ" = ( +/obj/structure/barricade/sandbags, +/obj/item/trash/uscm_mre{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"evS" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = 4; + pixel_y = -16 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"ewE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"ewL" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"exi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"exu" = ( +/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/prison, +/area/lv522/indoors/b_block/hydro) +"exz" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"exI" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"exJ" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) +"exW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"eyc" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"eyw" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"eyD" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"eyL" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"eyM" = ( +/obj/item/stack/tile/wood{ + layer = 2.5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"eyU" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"eyV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"ezg" = ( +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"ezo" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster17"; + name = "\improper torn magazine page"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster3"; + name = "\improper torn magazine page"; + pixel_x = 5; + pixel_y = 14 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ezp" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"ezD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ezF" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ezR" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"ezU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/north_command_centre) +"eAm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"eAp" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eAC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"eAJ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"eAT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"eAX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/fertilizer, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"eBd" = ( +/obj/structure/closet/secure_closet/marshal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"eBi" = ( +/obj/item/stack/cable_coil/cut, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) +"eBp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"eBw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"eBy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"eBz" = ( +/obj/item/device/defibrillator, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"eBN" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"eBV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"eCe" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"eCh" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) +"eCz" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/indoors/c_block/mining) +"eCI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eCM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"eCO" = ( +/obj/structure/largecrate/random, +/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/corsat, +/area/lv522/atmos/cargo_intake) +"eCW" = ( +/obj/structure/tunnel{ + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"eDc" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"eDh" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"eDo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"eDq" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) +"eDt" = ( +/obj/structure/curtain/red, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eDv" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/suit/storage/marine/smartgunner, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"eDw" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"eDy" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"eDz" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"eDF" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"eDQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"eDS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/n_rockies) +"eEo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"eEp" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"eEO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "24" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"eEY" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_east_street) +"eFb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"eFq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"eFt" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"eFy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"eFP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor) +"eFT" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"eGQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"eGY" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"eHb" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"eHl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"eHy" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"eHF" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"eHY" = ( +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"eIh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"eIp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"eIt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"eIJ" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"eIP" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"eIV" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eIZ" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" + }, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 29 + }, +/obj/item/prop{ + desc = "Something about a research lab."; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "USCM classified intelligence folder" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/oob) +"eJm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"eJw" = ( +/obj/item/clothing/mask/rebreather{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"eJy" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"eJN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"eJR" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"eJX" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"eKm" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"eKz" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"eKC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"eKH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bar) +"eKL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"eKN" = ( +/obj/structure/largecrate/random, +/obj/item/storage/box/packet/high_explosive{ + pixel_x = -5; + pixel_y = -14 + }, +/obj/item/storage/pill_bottle/packet/oxycodone{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"eKU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"eKV" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"eLd" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"eLi" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) +"eLl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"eLq" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"eLG" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -19; + pixel_y = -2 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"eLO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"eLU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) +"eLV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/oob) +"eMk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"eMs" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"eMw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"eMP" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"eMQ" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"eNf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"eNx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"eNO" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"eOe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"eOy" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"eOD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"eOE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"eOH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"eOX" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"ePl" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"ePp" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"ePs" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"ePE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ePV" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"eQc" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"eQq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"eQJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"eRd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"eRK" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"eRL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"eSx" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"eSD" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"eSF" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"eSP" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"eSV" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"eSY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"eTf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"eTi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"eTt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"eTA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"eTE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"eTF" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"eTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"eTL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"eTQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"eTW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) +"eUa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"eUe" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Marshals Office"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"eUf" = ( +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 1; + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"eUh" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"eUi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"eUt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"eUA" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "66" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eUG" = ( +/obj/structure/machinery/computer/cameras{ + desc = "The flight controls for a UD6 Dropship. these controls look pretty banged up, and there's some blood covering the screen.."; + name = "\improper 'Typhoon' flight controls"; + network = null; + pixel_y = 21 + }, +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/light/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/obj/item/prop/almayer/flight_recorder{ + layer = 2.9; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"eUL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"eUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"eUX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"eUZ" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"eVr" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"eVu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"eVF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"eVO" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"eWt" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"eWv" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"eWM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"eWN" = ( +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob) +"eWO" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"eXe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) +"eXm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"eXs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"eXv" = ( +/turf/open/floor/wood/wood_broken6, +/area/lv522/indoors/b_block/bar) +"eXG" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"eXN" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"eXO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/obj/structure/barricade/wooden{ + dir = 8; + layer = 4.1; + pixel_x = 9; + pixel_y = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"eXU" = ( +/obj/structure/machinery/power/terminal, +/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/plating, +/area/lv522/indoors/lone_buildings/engineering) +"eXV" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 16 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"eYp" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) +"eYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"eYy" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"eYA" = ( +/obj/item/clothing/head/headband/tan{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"eYG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"eYM" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/landing_zone_1/tunnel) +"eYO" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"eYW" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"eZg" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"eZI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"eZM" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"eZT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"fab" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"fau" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"faz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"faQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + pixel_x = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"faS" = ( +/obj/item/reagent_container/glass/rag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"faT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"fba" = ( +/obj/structure/flora/bush/ausbushes/grassybush{ + layer = 2.9 + }, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"fbg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"fbi" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fbt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"fbA" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"fbF" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"fbL" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/central_streets) +"fbR" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"fcl" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -11; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"fcB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block Bar" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"fdh" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"fdj" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"fdn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"fds" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"fdz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"fdH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fdP" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"fdS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"fej" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fer" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"feI" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"feK" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"feQ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"feV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"ffe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"ffj" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"ffG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/girder, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"ffL" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"ffR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fgf" = ( +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 17 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"fgk" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"fgm" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"fgr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"fgv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"fgw" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"fgz" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"fgB" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 18; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"fgF" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/filt) +"fha" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"fhl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"fhu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"fhw" = ( +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) +"fhx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"fhO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"fhS" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"fib" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"fiu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"fiB" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"fiN" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 10; + pixel_y = 32 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "16" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fiS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"fjk" = ( +/obj/structure/surface/rack, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs{ + icon_state = "earmuffs2"; + item_state = "earmuffs2"; + pixel_y = -4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"fjr" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"fjy" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/atm{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fjJ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"fjP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"fjW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"fkj" = ( +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"fko" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"fks" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"fkw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"fkB" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"fkD" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"fkJ" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"fkL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"fkY" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"fkZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"fld" = ( +/mob/living/simple_animal/mouse, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"flm" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Marshal Head Office" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"fly" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"flF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"flI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"fms" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"fmt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fmG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"fmS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c1000, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"fmX" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"fni" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"fnm" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"fnA" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"fnJ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"fnL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"fop" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) +"foL" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"foO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"fpn" = ( +/obj/item/device/analyzer, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"fqn" = ( +/obj/structure/curtain/red, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 2.1; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fqz" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"fqH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"frb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fri" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"frj" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"frl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"frt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"frv" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"frH" = ( +/obj/item/clothing/head/hardhat/dblue{ + layer = 6.1; + pixel_y = 15 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"frP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"frT" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"frX" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"fsh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fss" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fsz" = ( +/obj/structure/platform, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"fsN" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "29" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fsO" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = -8 + }, +/obj/structure/bed{ + layer = 2.6; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fsQ" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fsW" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ftd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ftl" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.2 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"fto" = ( +/obj/item/storage/belt/grenade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"fts" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"ftz" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"ftI" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"ftK" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ftT" = ( +/obj/structure/safe, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ftU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/gun/flamer{ + current_mag = null; + layer = 3.1 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"fuc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/pipe_water{ + dir = 8; + pixel_x = -31 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"ful" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"fuq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"fuw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"fuH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fuM" = ( +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"fuT" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"fvm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fvs" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"fvv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"fvx" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fvz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"fvG" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"fvN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"fvV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"fwc" = ( +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"fwo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"fws" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "76" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fwL" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/wy_chips_pepper, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"fwR" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"fwT" = ( +/obj/structure/surface/table/almayer, +/obj/item/robot_parts/robot_component/radio{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/device/radio/off{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fwU" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fxh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) +"fxI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/stack/folding_barricade, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"fyA" = ( +/obj/structure/largecrate/random, +/obj/item/explosive/plastic/breaching_charge{ + pixel_y = -2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"fyC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/trash/plate{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/trash/plate{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"fyE" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"fza" = ( +/obj/item/trash/barcardine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"fzf" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"fzj" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "65" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fzp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"fzD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"fzE" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorm_north) +"fzN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"fzU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"fzV" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"fAl" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/atmos/sewer) +"fAq" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"fAu" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"fBn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fBu" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fBw" = ( +/obj/structure/machinery/recharge_station, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"fBz" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"fBR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fCc" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"fCh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"fCw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"fDc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fDx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"fDR" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"fEd" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"fEe" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"fEi" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"fEP" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"fES" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fFg" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) +"fFp" = ( +/obj/item/clothing/gloves/yellow, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"fFq" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"fFw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"fFA" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fFX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"fGi" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"fGS" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"fGW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"fHT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) +"fHU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"fIa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"fIq" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"fIv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) +"fIz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"fII" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"fJb" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"fJc" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/east_central_street) +"fJg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) +"fJq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"fJz" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fKb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"fKi" = ( +/obj/item/clothing/suit/storage/marine/medium/smooth, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fKk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"fKy" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"fKI" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fKN" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "59" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"fLz" = ( +/obj/structure/machinery{ + density = 1; + dir = 4; + icon = 'icons/obj/vehicles/apc.dmi'; + icon_state = "apc_base_com"; + indestructible = 1; + name = "\improper M577 armored personnel carrier"; + pixel_y = -21; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"fLK" = ( +/obj/structure/cryofeed, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) +"fLS" = ( +/obj/structure/prop/dam/crane, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"fLY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"fMj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"fMk" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"fMy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fMM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"fMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pill_bottle/tramadol/skillless{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/russianRed/skillless{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/happy{ + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"fMP" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + pixel_y = 7 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_y = 6 + }, +/obj/item/ashtray/bronze{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"fMV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fMY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/east_reactor/south) +"fNm" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/carpet, +/area/lv522/atmos/east_reactor/east) +"fNo" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"fND" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"fNN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"fNZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"fOc" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"fOB" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fOM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/atmos/east_reactor/east) +"fOT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/colony/canister{ + pixel_y = 14 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"fPa" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_x = -6; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fPb" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"fPv" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"fPH" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"fPO" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"fPP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"fPR" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"fQg" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"fQh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"fQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"fQJ" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fQP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"fRn" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fRy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"fRA" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fRP" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.3 + }, +/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 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"fRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"fRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/trash/ceramic_plate, +/obj/item/reagent_container/food/snacks/microwavable/packaged_hdogs{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"fRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"fSb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"fSf" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/sewer) +"fSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"fSr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hardpoint/locomotion/van_wheels, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"fSv" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/beret/eng, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"fSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fSI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fSP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"fTb" = ( +/obj/structure/pipes/standard/tank/oxygen{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"fTe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"fTi" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/bed/chair/wood/normal{ + dir = 4; + layer = 4.1; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"fTP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"fTQ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "53" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"fUp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_container/hypospray/autoinjector/kelotane{ + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"fUx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"fUJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"fUP" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/landing_zone_2) +"fUQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"fUV" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"fVl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"fVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"fVD" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"fVR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"fVS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"fVX" = ( +/obj/item/trash/uscm_mre, +/obj/structure/surface/table/almayer, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"fVY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"fVZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/toy/deck{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"fWq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"fWu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"fWz" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"fWG" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"fWI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"fWV" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"fWW" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = 7; + pixel_y = 17 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"fXU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"fYd" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"fYf" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"fYh" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"fYi" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"fYj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"fYF" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/east_reactor/south) +"fYK" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"fYL" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fYM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"fYX" = ( +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"fYY" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"fZy" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"fZA" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"fZR" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/north_command_centre) +"fZX" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"gae" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"gar" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"gaw" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"gaE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"gaL" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"gaS" = ( +/obj/item/bananapeel{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -6; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/damage) +"gbe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"gbk" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0; + pixel_x = 11; + pixel_y = -4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"gbm" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"gbB" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"gbH" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gbL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"gbM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"gbO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"gbQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"gcs" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gcy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"gcI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"gcO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/colonist{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"gcU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"gcV" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"gcY" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gde" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"gdm" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gdo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"gdp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"gdt" = ( +/obj/item/tool/kitchen/knife, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"gdw" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"gdA" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) +"gdN" = ( +/obj/structure/closet/crate/green, +/obj/item/device/sentry_computer, +/obj/item/defenses/handheld/sentry, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"gdO" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/hallway) +"gec" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/clothing/glasses/kutjevo, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"geo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"get" = ( +/turf/open/floor/carpet, +/area/lv522/atmos/east_reactor/east) +"geu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/carpet, +/area/lv522/atmos/east_reactor/east) +"gew" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) +"geH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"gfi" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger{ + pixel_y = 14 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"gfL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/cargo_container/ferret/mid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gge" = ( +/obj/item/storage/belt/medical/lifesaver, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"ggu" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"ggv" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ggC" = ( +/obj/structure/surface/table/almayer, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ggK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"ggN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"ggZ" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"ghh" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"ghC" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ghF" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"ghM" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"gie" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) +"gij" = ( +/obj/item/tool/wirecutters, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"giL" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"giS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"giT" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"giX" = ( +/obj/structure/curtain/red, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"gjp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"gjt" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"gjz" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"gjA" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"gjG" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"gjV" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/item/weapon/gun/boltaction{ + pixel_x = -12; + pixel_y = 12 + }, +/obj/item/prop/alien/hugger, +/obj/structure/barricade/wooden{ + dir = 4; + layer = 4.1; + pixel_x = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"gkc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"gkf" = ( +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"gkh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"gkA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"gkB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"gkK" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"gkL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"gkM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"gkN" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) +"gkR" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"gkT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"gkY" = ( +/obj/structure/closet/bombcloset, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"glt" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"glD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/welding{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"glO" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"glQ" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"gme" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"gmg" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"gms" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"gmu" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) +"gmv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"gmA" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gmF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"gmH" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"gmL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"gnf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"gng" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"gnI" = ( +/obj/structure/machinery/vending/snack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"gnL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gnS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"gof" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gok" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"gol" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"gon" = ( +/obj/structure/largecrate/random/mini, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"goG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"goR" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"goT" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"goU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 + }, +/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"; + pixel_x = 5; + registered_name = "John Forklift" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"goY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"gpd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"gpr" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/filt) +"gpx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"gpC" = ( +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gpJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"gpN" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"gpS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"gqe" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = 24 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gqP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gqR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"grf" = ( +/obj/structure/barricade/wooden, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"grq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"grw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"grP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"grY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"gse" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"gsF" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"gsG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"gsO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"gsP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"gsS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"gsT" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gsX" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"gsZ" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gts" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"gtZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita{ + pixel_y = 2 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gui" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"gum" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"guB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"guE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"gvf" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"gvq" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) +"gvD" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "95" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"gvG" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"gvT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"gvU" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"gvV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"gwb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"gwf" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"gwo" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/n_rockies) +"gwt" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gwC" = ( +/obj/effect/alien/resin/sticky, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"gwD" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"gwH" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"gwP" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gxd" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"gxe" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"gxm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"gxp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"gxN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gxZ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/chips, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"gyb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"gyp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/southwest, +/area/lv522/indoors/a_block/medical) +"gyP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"gyR" = ( +/obj/item/clipboard, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gzi" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/mob/living/simple_animal/corgi/puppy, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"gzu" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gzK" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Armoury-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"gzN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gAa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"gAr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"gAu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"gAx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"gAO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"gBe" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"gBf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) +"gBi" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"gBy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"gBz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gBI" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"gBK" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"gBO" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"gBS" = ( +/obj/structure/coatrack{ + pixel_x = 11 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"gCl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"gCA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"gCH" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2) +"gCO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/trash/hotdog{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"gCZ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "9" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"gDb" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"gDe" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"gDl" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"gDD" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"gDL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_3"; + name = "remote door-control"; + pixel_y = 3 + }, +/obj/item/prop/colony/game, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"gDO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gDW" = ( +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"gEd" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"gEj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"gEB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gEM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"gEZ" = ( +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"gFp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gFs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"gFH" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"gGc" = ( +/obj/structure/surface/rack, +/obj/item/device/analyzer, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"gGj" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"gGt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"gGv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"gGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"gGW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"gHf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/weapon/baseballbat/metal, +/obj/item/weapon/baseballbat/metal{ + pixel_x = 5 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"gHh" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"gHi" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"gHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"gHJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"gHN" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"gHQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"gIa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"gIc" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"gIg" = ( +/mob/living/simple_animal/mouse, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"gIl" = ( +/obj/structure/bed/chair/wheelchair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"gIo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"gIv" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gIz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gIL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"gIO" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"gJm" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gJw" = ( +/obj/structure/machinery/computer/telecomms/server{ + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"gKh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gKy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Dining"; + pixel_y = 26 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"gKO" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_west_street) +"gKQ" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"gKY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bar) +"gLg" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"gLk" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"gLL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"gMb" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"gMc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"gMf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"gMs" = ( +/obj/item/stack/sandbags/small_stack, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"gMv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"gMX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"gNm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gNn" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 16; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"gNC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"gNH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"gNJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/bridges/op_centre) +"gNM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"gNT" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"gNU" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"gOj" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gOz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"gOI" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"gOJ" = ( +/obj/item/tool/wirecutters{ + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"gOS" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + layer = 3.1; + pixel_x = 13; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"gPk" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m4ra{ + current_mag = null + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"gPl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"gPv" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"gPz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"gPB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"gPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"gPR" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"gPX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"gQb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) +"gQu" = ( +/mob/living/simple_animal/cat/kitten{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"gQz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"gQQ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"gQV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gQW" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"gQY" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gRa" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"gRg" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"gRi" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"gRj" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"gRk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"gRs" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"gRw" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"gRD" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"gRL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"gRS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"gSp" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gSw" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"gSE" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) +"gSF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"gSL" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"gSM" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"gSN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"gSO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"gTd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"gTh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"gTi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"gTs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/central_streets) +"gTy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"gTO" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"gUi" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"gUj" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"gUC" = ( +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"gUK" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"gUT" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"gVd" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = 2; + pixel_y = -8 + }, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/atmos/cargo_intake) +"gVe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Family Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"gVf" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"gVg" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"gVn" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"gVv" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"gVB" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"gVR" = ( +/obj/effect/decal/cleanable/dirt, +/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 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gWb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/device/cassette_tape/pop1{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"gWp" = ( +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"gWz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"gWI" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"gWT" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/sewer) +"gWV" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"gWX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "3" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"gXc" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"gXw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"gXz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bed/chair{ + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"gXD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"gXE" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = -2; + pixel_y = -8 + }, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/atmos/cargo_intake) +"gXH" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"gXT" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"gXV" = ( +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"gYc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat, +/area/lv522/atmos/reactor_garage) +"gYp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"gYv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/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 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"gYH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"gYM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/cargo_intake) +"gYR" = ( +/obj/item/prop/colony/canister{ + pixel_y = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"gYT" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) +"gZc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"gZn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"gZt" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"gZD" = ( +/obj/structure/machinery/microwave, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"gZE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"gZL" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"han" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"hao" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"har" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"haF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"haQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"haS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"haY" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"hbw" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hbz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"hbK" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"hbO" = ( +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"hbV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"hcc" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"hce" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"hcg" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"hcr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"hcE" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hcO" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"hcX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"hcY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"hdu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/n_rockies) +"hdw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hdE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"hdG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"hem" = ( +/obj/item/ammo_magazine/m56d, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"her" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"hey" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/donut/jelly{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"heB" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"heG" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"heI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"heN" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"heR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"hfb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hft" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"hfy" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"hfG" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hfH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"hfL" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"hfS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"hfU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"hgb" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"hgi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"hgk" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"hgq" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hgr" = ( +/obj/structure/girder/reinforced, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"hgy" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/tank/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/tank/emergency_oxygen{ + pixel_y = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"hgz" = ( +/obj/item/ammo_box/magazine/misc/mre, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"hgG" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hgO" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"hgP" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"hhv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"hhz" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hhH" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/silver{ + amount = 20 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"hhR" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "33" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"hhY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hib" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"hif" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"hir" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "77" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hiC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"hiO" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"hiR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"hiS" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + id = "Reactor_entry_2"; + pixel_x = 16; + req_access = null + }, +/obj/item/prop/alien/hugger, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hiU" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"hjm" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"hjt" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"hjw" = ( +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"hjE" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hjP" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hjU" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/botanic_leather, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"hjW" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 13; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"hka" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/item/stack/tile/plasteel, +/obj/item/tool/wirecutters{ + pixel_x = -12; + pixel_y = -13 + }, +/turf/open/floor/plating, +/area/lv522/atmos/command_centre) +"hkc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"hki" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"hkz" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"hkA" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"hkN" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hkO" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"hkR" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"hkS" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"hlf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"hlk" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"hln" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"hls" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/golden_cup{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hlw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"hlC" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"hlW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"hmb" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"hmz" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"hmI" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"hmJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"hmK" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hmM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"hnk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"hnl" = ( +/obj/structure/largecrate/random/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"hny" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"hnH" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ + layer = 2.1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"hnS" = ( +/obj/structure/largecrate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"hob" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"hoo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"hoq" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"hor" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hov" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"hoy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"hoL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"hpr" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hpE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"hpF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hpL" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"hpP" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"hpZ" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hqA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"hqC" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"hqK" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"hqZ" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"hra" = ( +/obj/structure/largecrate/random, +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"hrb" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"hre" = ( +/obj/structure/flora/jungle/planttop1, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"hrK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hrY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"hsh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"hst" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"hsZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"htb" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"htf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"htk" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"htn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = 23; + pixel_y = 21 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"htu" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4"; + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"htA" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"htU" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"hub" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"hun" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "25" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"huu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"huy" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"huO" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hvh" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"hvj" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"hvD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"hwC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"hwF" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2"; + pixel_x = -3; + pixel_y = -10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"hwJ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"hwQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hxe" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"hxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"hxt" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"hxy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"hxS" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) +"hxY" = ( +/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/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"hyq" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"hyx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"hyW" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hzf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"hzk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/fitness) +"hzo" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hzA" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"hzI" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hAg" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"hAj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"hAp" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"hAs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"hAy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"hBg" = ( +/obj/structure/cryofeed, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) +"hBo" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"hBv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"hBw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"hBF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"hBL" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"hBY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hBZ" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"hCH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"hCM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"hDa" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) +"hDk" = ( +/obj/structure/machinery/light, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hDy" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/command_centre) +"hDE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"hDI" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"hDR" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"hEd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/soap, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"hEo" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"hEx" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_west_street) +"hEV" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) +"hFd" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"hFv" = ( +/obj/item/tool/crowbar, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"hFy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"hFC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/circuitboard/computer{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"hFX" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/south_street) +"hGf" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) +"hGr" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"hGA" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"hGB" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hGJ" = ( +/obj/structure/platform_decoration/strata{ + dir = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"hGV" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"hGX" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"hHb" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"hHc" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hHd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"hHz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"hHV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hIm" = ( +/obj/item/explosive/mine/active, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"hIp" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"hIx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"hIC" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"hIP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"hIS" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) +"hIY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"hIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"hJg" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"hJq" = ( +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"hJG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"hJK" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Central Office"; + pixel_y = 26 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hJP" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) +"hJS" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "33" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hJZ" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"hKc" = ( +/obj/structure/surface/table/almayer, +/obj/item/ore/gold, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hKv" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hKE" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"hKG" = ( +/obj/structure/prop/invuln/ice_prefab/standalone, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"hKK" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"hKU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) +"hKV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hLi" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"hLo" = ( +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"hLq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"hLt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"hLu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"hLO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"hLW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"hLX" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"hMb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/admin) +"hMr" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"hMs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hMI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"hMK" = ( +/obj/item/explosive/mine/active{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"hMN" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"hMT" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"hNk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"hNl" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"hNJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"hNP" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"hNR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"hOc" = ( +/obj/structure/surface/rack, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = 9 + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers" + }, +/obj/item/clothing/shoes/blue{ + desc = "Comfortable-looking slippers."; + name = "blue slippers"; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"hOj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"hOy" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"hOz" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hPa" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"hPd" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"hPg" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hPp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"hPM" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"hPO" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"hPU" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"hQd" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) +"hQg" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Secure_Master_Armoury_2"; + name = "remote door-control" + }, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"hQo" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hQB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"hQO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"hQU" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/nw_rockies) +"hRu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"hRv" = ( +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"hRH" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"hSf" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"hSi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"hSP" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"hSU" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hSV" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"hTb" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"hTe" = ( +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"hTC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"hUv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"hUP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"hUQ" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"hUZ" = ( +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"hVc" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hVe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"hVg" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"hVn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"hVt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"hVx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel/far) +"hVz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Engineering"; + pixel_y = -6 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"hVK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"hVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"hWb" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"hWz" = ( +/obj/structure/platform, +/obj/item/prop/colony/canister{ + layer = 3.1; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"hWI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"hWO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "27" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"hWV" = ( +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"hXk" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"hXt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"hXR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"hXS" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"hYd" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"hYe" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"hYn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"hYx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"hYQ" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"hYV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"hZf" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/structure/window/reinforced, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 23; + pixel_y = 29 + }, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"hZj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"hZl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"hZz" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"hZL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"hZV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/cpr_dummy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"hZZ" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"iaC" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"iaM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iaO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"iaX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "31" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iaY" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"ibq" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ibu" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"ibK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ibS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"ibZ" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"icc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"icp" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"icy" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"icE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"icG" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) +"icI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"icQ" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/clothing/suit/storage/marine/medium/rto, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"icT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"icX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 2 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"ida" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"idz" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) +"idH" = ( +/obj/item/device/flashlight/flare/on, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0; + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"idI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"idL" = ( +/turf/closed/wall/shiva/prefabricated/reinforced/hull, +/area/lv522/oob) +"idS" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"idX" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor/south) +"ieb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"iej" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iel" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ien" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/oob) +"ieG" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor) +"ieW" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/prop/vehicles/crawler{ + density = 0; + dir = 8; + layer = 2.0; + pixel_y = -13 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"ieX" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"ifb" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"iff" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"ifo" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ifs" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"ifx" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"ifB" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"ifG" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"ifK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"igc" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"igg" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/under/marine/reconnaissance, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Lance Corporal Martin 'Coyote' Conte" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ign" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"igr" = ( +/obj/structure/cargo_container/seegson/right, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"igv" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"igY" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ihe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ihy" = ( +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"ihB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/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{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iii" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) +"iis" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"iit" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"iiB" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"iiE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"iiP" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 15 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"iiV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"ijg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"iji" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"ijs" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ijv" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"ijR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"iki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"ikq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) +"ikz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"ikZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ilc" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) +"ild" = ( +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ilK" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"ilU" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"img" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"imr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"imC" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"imG" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"imT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"inp" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"inA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"inB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"inZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"iod" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"ioA" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"ioS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"ipa" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_street) +"ipc" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"ipn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ipw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"ipx" = ( +/turf/open/auto_turf/sand/layer1, +/area/lv522/indoors/b_block/bridge) +"ipB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"ipG" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/seeds/berryseed, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"ipJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"iqa" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"iqb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"iqe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood/wood_broken5, +/area/lv522/indoors/b_block/bar) +"iqf" = ( +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical/glass) +"iqw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"iqQ" = ( +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"iqV" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"iqW" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iqX" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"irc" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"iru" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"irE" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"irF" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/pointybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"irI" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"isa" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ish" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"isn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"isq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"iss" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"isE" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "gib4" + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"isS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"isX" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"ito" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"ity" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"itz" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"itG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen) +"itJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"iub" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"iuv" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"iuw" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"iuA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"iuB" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"iuI" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"iuT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ivf" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"ivk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/tool/wet_sign, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"ivt" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ivy" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/jackhammer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"ivz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"iwp" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"iwt" = ( +/obj/structure/barricade/deployable, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"iwD" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"iwE" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"iwF" = ( +/obj/structure/machinery/conveyor{ + dir = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"iwO" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"iwV" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"iwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ixg" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"ixi" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"ixp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ixD" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/north_command_centre) +"ixO" = ( +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"ixP" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"ixQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"izf" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"izm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"izp" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"izz" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"iAv" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/reactor_garage) +"iAS" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"iAU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"iAZ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"iBj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"iBr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_tech, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"iBv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Canteen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"iBJ" = ( +/obj/effect/decal/cleanable/generic, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -13; + pixel_y = -9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"iBY" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8; + pixel_y = 29 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"iCb" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"iCl" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"iCq" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"iCF" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"iCI" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "62" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"iCJ" = ( +/turf/open/floor/wood/wood_broken7, +/area/lv522/indoors/b_block/bar) +"iCT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"iDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"iDr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iDD" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen/damage) +"iDH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iEa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iEd" = ( +/obj/item/trash/uscm_mre, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"iEi" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"iEE" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"iEN" = ( +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/surface/table/gamblingtable, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"iEP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"iEX" = ( +/obj/structure/cargo_container/seegson/mid, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"iFg" = ( +/obj/structure/largecrate/guns/russian, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"iFj" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"iFq" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"iFr" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iFu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"iFv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"iFD" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "75" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iFK" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iGn" = ( +/obj/structure/largecrate/random/barrel{ + layer = 3.2; + pixel_x = 2 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"iGp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"iGV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"iHp" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iHu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"iHA" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"iHD" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iHN" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"iIb" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iIs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"iIw" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"iIz" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"iIK" = ( +/obj/structure/foamed_metal, +/obj/item/explosive/grenade/custom, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"iIL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"iIQ" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"iIV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"iJb" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"iJu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/item/ammo_magazine/handful/shotgun, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"iJE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iJJ" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/barricade/wooden{ + layer = 4.1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"iJN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) +"iJU" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"iJZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"iKj" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"iKo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"iKA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) +"iKF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"iKW" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"iKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"iLl" = ( +/obj/structure/machinery/sensortower{ + pixel_x = 6 + }, +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"iLw" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"iLx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"iLB" = ( +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"iLZ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"iMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"iMv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"iMw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"iMC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"iNd" = ( +/obj/structure/prop/vehicles{ + icon_state = "van_damaged" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"iNw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Garage"; + pixel_y = 26 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"iNA" = ( +/obj/item/clothing/shoes/marine/civilian{ + name = "steel toe boots" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iNE" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"iNL" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"iNM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_3"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"iNR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"iNU" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iNY" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"iOi" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"iOj" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"iOW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"iOY" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/obj/structure/barricade/wooden{ + dir = 8; + layer = 4.1; + pixel_x = -24; + pixel_y = -20 + }, +/obj/structure/barricade/wooden{ + dir = 4; + layer = 4.1; + pixel_x = 15 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"iPu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"iPy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"iPG" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"iPP" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iQo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"iQL" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"iQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"iQY" = ( +/obj/structure/window/reinforced, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"iRb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"iRl" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"iRn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"iRE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"iRF" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"iSf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"iSj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) +"iSo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"iSr" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"iSs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"iSD" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iSO" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"iST" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"iSY" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"iTh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"iTm" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"iTy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = 12; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 20; + pixel_y = -5 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"iTD" = ( +/obj/item/trash/barcardine, +/obj/item/tool/weldingtool, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"iTF" = ( +/obj/item/ammo_box/magazine/m4ra/ap/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"iTS" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"iTW" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"iTZ" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "36" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"iUh" = ( +/obj/item/prop/alien/hugger, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"iUk" = ( +/obj/structure/prop/dam/drill{ + layer = 3.1; + pixel_x = 13; + pixel_y = -1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"iUO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"iUW" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"iVi" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"iVm" = ( +/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 = -2; + pixel_y = -4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"iVA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"iVM" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"iWe" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"iWk" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "Corpo Vault"; + name = "Vault Lockdown" + }, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/corsat/marked, +/area/lv522/oob/w_y_vault) +"iWo" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"iWN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"iWV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"iXn" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"iXu" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_y = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"iXy" = ( +/obj/structure/largecrate/random/mini/med{ + pixel_x = -12; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"iXA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"iXM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"iXT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"iXZ" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"iYe" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"iYk" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"iYm" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"iYt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"iYJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"iYN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"iYQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"iZj" = ( +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"iZm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Garage Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"iZI" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"iZJ" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"iZP" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"iZS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"jai" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"jam" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"jaq" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"jas" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/mining) +"jaE" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"jaG" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liaison Office " + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"jaO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"jaS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"jbh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"jbn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"jbI" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "smokestack"; + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jcb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"jcz" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jcW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/liquidfood, +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway/damage) +"jdi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"jdn" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/reagent_container/hypospray/autoinjector/emergency, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"jdP" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"jdQ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jdR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"jer" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"jfn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"jfy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack{ + pixel_y = 2 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"jfE" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jfO" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"jfZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jgo" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "4" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jgq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jgt" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"jgM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"jhe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"jhi" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"jhl" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jhF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"jhH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"jhM" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"jhQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"jih" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Cargo"; + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"jiP" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/lipstick{ + icon_state = "lipstick_red"; + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"jiR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"jiU" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"jiY" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"jjb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"jjh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jjx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jjB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"jjF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"jjG" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"jjP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"jjX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"jjY" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"jkC" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jkJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"jkP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jlb" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) +"jll" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"jlp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"jmb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/eastleft, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"jmf" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"jmk" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"jmm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"jmo" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"jmr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) +"jmz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"jmE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"jmG" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/cargo) +"jmL" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/north) +"jmM" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 + }, +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jnf" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"jng" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"jnk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"jnm" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"jnB" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jnF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"jnL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"jnZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"joc" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"jom" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"jon" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/west) +"jop" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"joH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jpb" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/shotgun/large/slug, +/obj/item/storage/pouch/general/large/m39ap, +/obj/item/storage/pouch/flamertank, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"jpc" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"jpl" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"jpp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"jpx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"jpE" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"jpH" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) +"jqa" = ( +/obj/structure/ore_box, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"jqb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"jqv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/falcon_drone{ + desc = "Some sort of fancy...toy? You're not sure.."; + pixel_x = -12 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"jqy" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"jqC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Northlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"jqI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"jqJ" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"jqN" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"jqO" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"jqS" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"jqT" = ( +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jrb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"jrd" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"jrr" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"jru" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"jrx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jrL" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"jrO" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"jrT" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jrU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"jrY" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 1 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"jsc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"jsn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"jsD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"jsJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"jsM" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"jsQ" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"jte" = ( +/obj/structure/largecrate/random/mini{ + layer = 3.1; + pixel_x = 10; + pixel_y = -7 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"jtg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jtt" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jtu" = ( +/obj/structure/barricade/deployable, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"jtC" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"jtK" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"jtY" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_east_street) +"jue" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"juq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"jus" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/obj/structure/cargo_container/arious/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"juW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"juX" = ( +/obj/item/prop/colony/used_flare, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"juY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"jvf" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"jvk" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 8; + layer = 3.2; + name = "Television set"; + network = list("military"); + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"jvo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack{ + pixel_y = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"jvq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/obj/item/trash/plate{ + pixel_x = 2; + pixel_y = 20 + }, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_y = 27 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"jvu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"jvx" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"jvy" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"jvA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"jwo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"jwM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jwN" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jwO" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"jwR" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) +"jwS" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/bikehorn, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"jwV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"jxz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"jxD" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"jxI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"jxW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"jyf" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3; + pixel_y = 6 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_west_street) +"jyz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"jyI" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"jyM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"jyO" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"jyX" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "65" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jzb" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"jze" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"jzC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 15 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"jzF" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jzR" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"jzU" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"jzV" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"jzZ" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"jAc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "63" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jAd" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"jAh" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"jAl" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"jAn" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"jAs" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"jAt" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jAx" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"jAz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = -2; + pixel_y = 24 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"jAC" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jAD" = ( +/obj/structure/ore_box, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"jAG" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jAI" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"jAJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"jAV" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -12; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorm_north) +"jBh" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "47" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jBw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"jBy" = ( +/obj/structure/janitorialcart, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"jBR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"jBU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"jBX" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"jCb" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jCc" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/item/stack/sheet/wood{ + layer = 4.1; + pixel_x = 14; + pixel_y = -4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"jCy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_east_street) +"jCF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jCH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"jCU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jCX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jDa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 17 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"jDg" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jDm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"jDA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/structure/foamed_metal, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"jDD" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"jDF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jDG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"jDJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jDO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"jDP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"jDS" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"jDX" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"jEu" = ( +/obj/structure/sign/safety/rad_haz, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"jEE" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"jEW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jEX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"jFc" = ( +/obj/item/tool/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jFd" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"jFr" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"jFG" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"jFM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/reactor_garage) +"jFY" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"jGa" = ( +/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/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"jGe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"jGp" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"jGv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Corpo-Bridge-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"jGy" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob) +"jGz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"jGJ" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"jGK" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"jGU" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"jHb" = ( +/turf/open/gm/river, +/area/lv522/oob) +"jHe" = ( +/obj/structure/girder, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"jHg" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"jHi" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"jHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jHP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"jHS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"jHW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/faxmachine{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jIk" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"jIA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) +"jIE" = ( +/obj/structure/closet/crate, +/obj/item/storage/xeno_tag_case, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jIL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"jIR" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/gm/river, +/area/lv522/oob) +"jIU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"jJF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"jJG" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"jJT" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/north) +"jJW" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"jKn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jKP" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jLu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jLw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jLz" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"jLF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"jLG" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jLX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"jLZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/plaincake{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"jMv" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"jMy" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"jMJ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"jMS" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jMZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = -8 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"jNj" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"jNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"jNx" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"jNJ" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"jOh" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"jOv" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"jOw" = ( +/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/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"jOA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"jOF" = ( +/obj/effect/acid_hole, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"jOG" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"jOM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"jOT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"jPa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"jPu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"jPw" = ( +/turf/open/floor/plating, +/area/lv522/oob) +"jPx" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"jPC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"jPI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "71" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jPQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"jPR" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jPV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"jPW" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"jPY" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"jQa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/crane{ + icon_state = "tractor"; + name = "tractor" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"jQk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"jQL" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "26" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"jQN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"jRc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"jRf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"jRz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"jRT" = ( +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"jRV" = ( +/obj/structure/machinery/computer3/server/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) +"jRZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"jSc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"jSw" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"jSV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Botany"; + pixel_x = 16 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"jTt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"jTx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"jTH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"jTO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"jUe" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"jUg" = ( +/obj/item/ammo_box/magazine/l42a/ap/empty, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"jUn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"jUo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) +"jUw" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"jUz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"jUY" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "Reactor_garage_2" + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/reactor_garage) +"jVq" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"jVE" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"jVH" = ( +/obj/item/paper{ + pixel_x = -4; + pixel_y = 21 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"jVU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"jWb" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"jWc" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"jWe" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"jWg" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"jWF" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/donut{ + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"jWT" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"jXd" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"jXk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"jXp" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/item/weapon/ice_axe/red{ + pixel_y = 3 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jXr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"jXy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"jXD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"jXH" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"jXK" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"jXQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"jXT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jXW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"jYj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"jYr" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"jYu" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"jYy" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"jYG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"jYJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) +"jYU" = ( +/obj/structure/bed{ + layer = 2.7; + pixel_y = 12 + }, +/obj/structure/bed{ + layer = 2.6; + pixel_y = 25 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"jZa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/admin) +"jZc" = ( +/obj/structure/flora/jungle/thickbush, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"jZf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"jZo" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"jZv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"jZE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"jZJ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal{ + amount = 50; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"jZO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/wood/wood_broken2, +/area/lv522/indoors/b_block/bar) +"jZP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Equipment" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"jZV" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/lv522/outdoors/w_rockies) +"kas" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"kaB" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/mop{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"kaV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/rack, +/obj/item/tool/hand_labeler, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"kba" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2" + }, +/turf/open/gm/river, +/area/lv522/oob) +"kbb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"kbh" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"kbi" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"kbr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"kbw" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kbE" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kbH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"kbR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kbS" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"kcb" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/west_reactor) +"kcd" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"kce" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"kco" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv522/oob) +"kcC" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"kcL" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/n_rockies) +"kcN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"kcP" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"kcR" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"kcW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stack/sandbags/small_stack, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"kdb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"kdf" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"kdm" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"kdo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"kdx" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"kdy" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"kdD" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"kdL" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_2"; + layer = 5.1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv522/oob) +"kdT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plaincakeslice{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/plaincakeslice, +/obj/structure/machinery/light, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"kdZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/dorms) +"keb" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"ked" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold/small_stack, +/obj/item/ore/silver, +/obj/item/ore/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"keh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"kek" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kep" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"keq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"keC" = ( +/obj/structure/prop/dam/truck/cargo{ + layer = 3.1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"keM" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"kfb" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"kfq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"kfG" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 1; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/alien/hugger{ + pixel_y = -11 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"kfI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"kfP" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"kfV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"kgn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"kgp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"kgB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"kgM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/apron/overalls{ + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"kgN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"kgU" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"khk" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"khy" = ( +/obj/item/tool/surgery/circular_saw, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"khG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"khN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"khU" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"kik" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kiq" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"kiw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kiR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kiT" = ( +/obj/item/stack/medical/bruise_pack, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"kjj" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -13; + pixel_y = 12 + }, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"kjp" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + indestructible = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) +"kjF" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"kjO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"kjQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"kjW" = ( +/obj/structure/surface/rack, +/obj/item/explosive/plastic, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"kke" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"kkg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kko" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"kky" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"kkA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"kkL" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kkO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"kll" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"kln" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"klr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"klA" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/item/trash/uscm_mre, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"klN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"klO" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"klU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"klW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"klY" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"kmd" = ( +/obj/structure/prop/turbine, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"kme" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"kmi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"kmq" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"kmr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"kmE" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"knk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"knF" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) +"knK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"knQ" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"knT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + density = 0; + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"koj" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"kor" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"koC" = ( +/obj/structure/surface/table/almayer, +/obj/item/co2_cartridge{ + pixel_x = -8; + pixel_y = 14 + }, +/obj/item/clothing/accessory/armband/engine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"koM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"kpb" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"kpf" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"kpt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kpB" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"kpL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) +"kpN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"kpP" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"kpR" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"kqb" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/kitchen) +"kqz" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kqH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kqJ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"kqT" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"kqW" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"krm" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"krq" = ( +/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"krw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"kry" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) +"krB" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"krI" = ( +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"krK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wrench, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"ksd" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"ksf" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 8; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"ksg" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"ksk" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"kso" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ksr" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) +"kst" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ktc" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"ktd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"ktg" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/grassybush{ + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kti" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"ktp" = ( +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/oob) +"ktt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"ktx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/dorms) +"ktC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"ktI" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ktM" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"ktU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ktZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"kug" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/pistachios, +/obj/item/trash/kepler, +/obj/item/trash/chips, +/obj/item/trash/popcorn, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"kuy" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"kuA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"kuD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"kuZ" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kvc" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"kvh" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"kvi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"kvn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"kvw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "69" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kvy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"kvH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kvP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"kvW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kwb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"kwe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kwg" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"kwj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"kwm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kws" = ( +/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/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kwt" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"kwF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/newspaper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"kwJ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/north_command_centre) +"kwK" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"kwR" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"kwU" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"kxe" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"kxq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/microwavable/packaged_burrito, +/obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"kxv" = ( +/obj/structure/machinery/optable, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"kxC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) +"kxI" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"kxN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) +"kyo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"kyB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"kyC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"kyH" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"kyY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"kzl" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"kzr" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/wy_chips_pepper, +/obj/item/trash/pistachios, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"kzu" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 4; + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"kzz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kzT" = ( +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"kAj" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/landmark/survivor_spawner/lv522_forecon_squad_leader, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"kBc" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"kBj" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"kBk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"kBq" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"kBv" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"kBz" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"kBA" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"kBB" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"kBC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"kBD" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kBK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"kBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"kBT" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kBZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"kCF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"kCI" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"kCW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"kDj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) +"kDn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kDs" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kDI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"kDY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"kEd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"kEj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) +"kEv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/janitorialcart, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"kEy" = ( +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"kEM" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"kEN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_arm"; + name = "right arm" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"kER" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"kEV" = ( +/obj/item/storage/firstaid/toxin/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"kFd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 17; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"kFn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"kFo" = ( +/obj/item/clothing/suit/storage/marine/M3G, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"kFq" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"kFB" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"kFH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"kFN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) +"kFP" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"kGa" = ( +/obj/structure/largecrate/random{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"kGb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"kGe" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"kGl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"kGx" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 + }, +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"kGG" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"kGM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"kGX" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"kHu" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"kHB" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"kHH" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) +"kHM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"kHP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"kHY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"kIj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"kIp" = ( +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 1; + name = "Television set"; + network = null; + pixel_x = -1; + pixel_y = 7 + }, +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/vodka/chess/b_knight{ + pixel_x = -5; + pixel_y = 23 + }, +/obj/item/tool/wrench{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/wood_broken, +/area/lv522/indoors/b_block/bar) +"kIs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"kIt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kIN" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 13 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kIO" = ( +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kIV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"kJd" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"kJg" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kJz" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"kJC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"kJI" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"kJM" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"kJO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"kJY" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kKd" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kKw" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "18" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kKI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block Bar" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"kLk" = ( +/obj/item/stack/sheet/metal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"kLp" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"kLM" = ( +/obj/structure/closet/secure_closet/miner{ + pixel_x = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"kLT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"kMG" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"kML" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"kMQ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) +"kMS" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"kMU" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kMW" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"kMY" = ( +/obj/structure/platform, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"kNc" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"kNe" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"kNg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_1"; + name = "treadmill" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"kNk" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"kNo" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor) +"kNs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"kNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"kNW" = ( +/obj/structure/pipes/standard/manifold/visible{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"kOa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"kOp" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -6; + pixel_y = 15 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"kOE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kOQ" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kOS" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"kOU" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kPh" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"kPu" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kPC" = ( +/obj/structure/cargo_container/wy/mid{ + health = 5000 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"kPO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"kPW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"kQf" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"kQI" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 18 + }, +/obj/item/tool/soap{ + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"kQJ" = ( +/obj/item/explosive/mine/active{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"kQK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kQS" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"kQV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) +"kQW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kRb" = ( +/obj/item/weapon/telebaton, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"kRg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"kRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/operating, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"kRQ" = ( +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"kRZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"kSm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"kSq" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"kSs" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 6; + pixel_y = 18 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -9; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"kSt" = ( +/obj/structure/closet/crate, +/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kSu" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kSC" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"kSE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"kSH" = ( +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_leg"; + name = "right leg"; + pixel_x = 8; + pixel_y = 20 + }, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "r_foot"; + name = "right foot"; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"kSK" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"kSR" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"kTj" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"kTn" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"kTo" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"kTw" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"kTB" = ( +/obj/structure/powerloader_wreckage/jd, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"kTC" = ( +/obj/structure/fence, +/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/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"kTS" = ( +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"kTY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"kUe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"kUo" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"kUw" = ( +/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"kUA" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"kUJ" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"kVd" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgibleg" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"kVe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kVh" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"kVr" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"kVz" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"kVG" = ( +/obj/structure/cargo_container/kelland/left, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"kVO" = ( +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"kVU" = ( +/obj/structure/window_frame/strata, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"kVV" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"kWh" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"kWn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kWo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/ammo_magazine/revolver/spearhead, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kWM" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"kWS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kWX" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"kXb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"kXe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kXk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"kXm" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"kXo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"kXC" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"kXG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/weldingtool/simple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"kXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"kXU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"kXY" = ( +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"kYm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"kYv" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"kYB" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"kYH" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"kZj" = ( +/obj/item/ammo_magazine/rifle/m4ra/ap{ + current_rounds = 0 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"kZm" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"kZp" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"kZs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"kZB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"kZU" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"kZY" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"lab" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"lap" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) +"laC" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"laK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"laX" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8; + pixel_y = 29 + }, +/obj/structure/prop/invuln/ice_prefab{ + pixel_y = -3 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2"; + layer = 4.2; + pixel_y = 21 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"lbs" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"lby" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lbA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"lbD" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"lbE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lbZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"lcs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lcR" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/north_command_centre) +"ldb" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"ldc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ldl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ldu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"ldC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ldE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ldJ" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Southwest Landing Zone" + }, +/turf/open/floor/plating, +/area/shuttle/drop1/lv522) +"ldK" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"ldM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"ldU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"leT" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"leV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"leW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters{ + pixel_y = 6 + }, +/obj/item/weapon/wirerod{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"lfc" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lfq" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"lfJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lgq" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lgr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"lgI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"lgR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lgT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"lhK" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"lhZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lid" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"liL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"liN" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ljk" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"ljn" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"ljq" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"ljr" = ( +/turf/closed/shuttle/elevator{ + dir = 10 + }, +/area/lv522/indoors/c_block/mining) +"ljt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"ljA" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"ljK" = ( +/obj/structure/ore_box, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ljN" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ljZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 1; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lkc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"lkj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"lkm" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"lko" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"lkp" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"lkH" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"lkI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "74" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"llh" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jaccuzi. 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"; + pixel_x = -5; + pixel_y = 19; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"lli" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"lll" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -7; + pixel_y = 19 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"llp" = ( +/obj/structure/foamed_metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"llH" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"llO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"llR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"llU" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"llX" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"lmh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"lmj" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"lmn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"lmq" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "68" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lms" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lmJ" = ( +/obj/structure/prop/dam/crane/cargo, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"lmN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"lmY" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/south) +"lnb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"lnc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"lnf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"lni" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"lnL" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"lnQ" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"lnV" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"lol" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"loy" = ( +/obj/item/pamphlet/skill/powerloader, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"loH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) +"loM" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_arm"; + name = "left arm"; + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 4 + }, +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"loR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"loY" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/east_reactor/south) +"lpn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"lpq" = ( +/obj/structure/bed/stool, +/obj/item/prop/alien/hugger, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"lps" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/east) +"lpy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"lpD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"lpH" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"lpL" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"lpM" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"lpY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"lqb" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/cargo_intake) +"lqd" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"lqA" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) +"lqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"lqD" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"lqG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"lqX" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"lrb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"lrk" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"lrm" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"lrS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lsh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lsl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"lsD" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"lsG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"lsO" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ltc" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"lte" = ( +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"ltf" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"lti" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"lty" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"ltC" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"ltE" = ( +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"ltO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lua" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"lui" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"lum" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"lun" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/device/flash{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"luq" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"lur" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"lux" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"luy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"luS" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_4"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"luX" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"luZ" = ( +/obj/structure/machinery/computer/crew/colony, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lvb" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"lvi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"lvH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"lvO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lvV" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"lwa" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "Medical Laboratory Operating Theatre"; + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"lwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"lwx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lwC" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"lwW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lwX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"lwZ" = ( +/obj/item/ammo_box/magazine/m4ra/ap/empty, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lxc" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/buckshot/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lxd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"lxt" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"lxw" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"lxL" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"lxN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) +"lxZ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lye" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"lyg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"lyq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"lyt" = ( +/obj/structure/platform, +/obj/structure/reagent_dispensers/watertank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"lyN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lyP" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"lzc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"lzh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"lzl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"lzq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"lzw" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"lzB" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"lzC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "48" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lzM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"lzN" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lzT" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lzU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"lzZ" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -5; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"lAa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lAm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness/glass) +"lAs" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lAJ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"lAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"lAZ" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/north_command_centre) +"lBb" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"lBi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"lBs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"lBw" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"lBz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"lBE" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"lBG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"lCh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lCH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/n_rockies) +"lCT" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/toy/dice, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"lCW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 5 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"lCX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lDK" = ( +/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/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lDW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"lEy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"lEI" = ( +/obj/item/stack/rods, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lEK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"lEN" = ( +/obj/structure/prop/invuln/lifeboat_hatch_placeholder{ + layer = 2.1 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"lEP" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lES" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"lEY" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "101" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lFf" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lFg" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/north) +"lFi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"lFI" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "31" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lFO" = ( +/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"; + layer = 3.1; + name = "trash bag"; + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"lFW" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) +"lFZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"lGs" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lGH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lHe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"lHk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"lHo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"lHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.1; + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"lHL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"lHV" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lHY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/flask/marine, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lIk" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"lIA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"lII" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"lIR" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"lIY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"lJa" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"lJd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lJl" = ( +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"lJn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"lJr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"lJy" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"lJF" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"lJM" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"lJP" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "68" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lJT" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"lJZ" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 22 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lKe" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"lKu" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"lKA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman{ + layer = 2.9 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"lKB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"lKR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"lKV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lLc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"lLe" = ( +/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/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"lLl" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"lLx" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical) +"lLA" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/reactor_garage) +"lLB" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/east_central_street) +"lLE" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"lMg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/weapon/gun/launcher/grenade/m81/m79, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"lMh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1) +"lMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"lMH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"lMK" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/snappop{ + pixel_x = -7 + }, +/obj/item/toy/snappop{ + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"lMP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"lMR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"lNf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"lNl" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"lNs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"lNv" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lNA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"lNR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"lOi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"lOq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lOB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"lOC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"lOF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lOT" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"lPf" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"lPi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"lPq" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"lPN" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"lPW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) +"lPX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"lPY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/prop/colony/canister{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/item/prop/colony/canister{ + pixel_y = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"lQh" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"lQu" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "72" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lQx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"lQS" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"lQV" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"lRi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = -1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"lRF" = ( +/obj/structure/girder, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"lRR" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"lSe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"lSg" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18 + }, +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"lSh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lSr" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"lSA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"lSF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"lTa" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "6" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lTi" = ( +/obj/structure/girder, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"lTD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/security) +"lTM" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 23 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/toilet) +"lTQ" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"lTV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"lUb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"lUc" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"lUh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"lUi" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"lUv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"lUw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"lUz" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"lUB" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/east_central_street) +"lUJ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"lUK" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/n_rockies) +"lUS" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 4; + pixel_y = -15 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/admin) +"lUV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"lVi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"lVp" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/kitchen/glass) +"lVA" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/popcorn{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"lVB" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"lWf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"lWN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"lWW" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"lXd" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"lXl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"lXy" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"lXB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"lXR" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"lXY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"lYe" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/colony_floodlight, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"lYs" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"lYB" = ( +/obj/structure/cargo_container/kelland/left, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 28 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"lYG" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"lYK" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"lYR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate{ + pixel_x = 6 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"lYY" = ( +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"lYZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv{ + layer = 3.1; + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"lZa" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"lZc" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"lZx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"lZA" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"lZD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"lZL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"maf" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"map" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"mas" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"max" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"maz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"maF" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"maH" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "71" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mbh" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/largecrate, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mbr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/tray{ + pixel_x = 16; + pixel_y = 23 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 24; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/t_comm) +"mbx" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"mbH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"mbO" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 20 + }, +/obj/structure/largecrate/random{ + pixel_x = -12 + }, +/obj/structure/largecrate/random{ + pixel_x = -10; + pixel_y = 18 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"mck" = ( +/obj/structure/surface/table/almayer{ + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"mco" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"mcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"mcz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"mcD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"mcI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"mcL" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"mcM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"mcW" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mcY" = ( +/obj/structure/largecrate/supply/ammo/m41a/half{ + pixel_x = 5 + }, +/obj/item/storage/box/guncase/m41a{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/ammo_box/rounds/empty{ + layer = 3.1; + pixel_y = -15 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mdp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/tool/weldingtool, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"mdy" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/west) +"mdD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"mdN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mdQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"mdS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"meb" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"mee" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"meE" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"meG" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"meX" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) +"meY" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"meZ" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"mfm" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"mfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"mfu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mfy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"mfG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"mfN" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"mfT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"mgb" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"mge" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_box/rounds/smg{ + layer = 3; + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mgo" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/east_reactor/south) +"mgB" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/vial, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"mgJ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"mhi" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mhu" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"mhy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"mhG" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"mhQ" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"mhT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"mie" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"mii" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mil" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"miD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"miZ" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/south_east_street) +"mjh" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"mjs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"mjz" = ( +/obj/structure/dispenser/oxygen, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"mjF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) +"mjI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/egg_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mkm" = ( +/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"mkW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"mkZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"mld" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"mlf" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mlr" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mlu" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mlE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"mlM" = ( +/obj/structure/barricade/sandbags{ + dir = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = 13; + pixel_y = -5 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"mlV" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"mlX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mmf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"mml" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"mmt" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"mmI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -12; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"mmV" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 22 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"mnm" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"mnq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/east) +"mnr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"mnw" = ( +/obj/item/clothing/suit/storage/marine/M3S, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"mnE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"mnF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"mnG" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/fitness) +"mnM" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"mnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/l42a/extended{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"mnY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mok" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"mon" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/landmark/corpsespawner/wy/manager, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"mox" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"moC" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/small_stack, +/obj/item/ore/uranium, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"moO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness/glass) +"mpu" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/landing_zone_1) +"mpN" = ( +/obj/structure/prop/vehicles/crawler{ + layer = 3.2 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"mqk" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"mqx" = ( +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"mqA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"mqC" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"mqH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"mqU" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/atmos/command_centre) +"mqX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"mrM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"msd" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"mse" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"msi" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"msj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"msn" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"msu" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"msA" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"msB" = ( +/obj/item/reagent_container/food/snacks/stewedsoymeat{ + pixel_y = -6 + }, +/obj/item/trash/sosjerky{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"msR" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"msT" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/kitchen/damage) +"msU" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"msX" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/filt) +"mtb" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/west) +"mti" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/head/hardhat/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"mtt" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"mty" = ( +/obj/structure/bed/chair, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"mtI" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"mtQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ + dir = 2; + id = "sh_dropship2"; + name = "\improper Typhoon crew hatch" + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mtS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"mua" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/filt) +"mud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"mum" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"muu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"muN" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"muY" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) +"mvl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"mvx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"mvB" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"mvD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"mvM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mwm" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"mwn" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"mwp" = ( +/obj/effect/spawner/random/tool, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"mwx" = ( +/obj/structure/tunnel, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"mwC" = ( +/obj/item/clothing/head/welding, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"mwF" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mwO" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_west_street) +"mwV" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"mwX" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"mxc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_west_street) +"mxx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"mxH" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"mxK" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"mxO" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/t_comm) +"mxS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"mys" = ( +/obj/item/stack/sheet/wood, +/obj/item/stack/rods, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"myw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"myz" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) +"myE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"myK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"myV" = ( +/obj/item/clothing/suit/storage/marine/light, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"myW" = ( +/obj/structure/closet/crate, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"mzf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mzh" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"mzi" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"mzk" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mzt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"mzy" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"mzM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"mzQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"mzV" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 15 + }, +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/frame/table/almayer{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mzX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"mAg" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"mAk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"mAD" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"mAE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"mAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"mAR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"mAW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"mAY" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "15" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mBc" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"mBs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"mBE" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"mBF" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/b_block/bar) +"mBU" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mCb" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"mCq" = ( +/obj/item/storage/beer_pack, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"mCy" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"mCA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"mCD" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"mCW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges) +"mDe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"mDm" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) +"mDs" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"mDu" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mDv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mDw" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"mDJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"mEw" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mEx" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"mEy" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"mEz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"mEL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mEX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"mFv" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 5; + pixel_x = 15 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"mFz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Kitchen Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"mFA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"mFS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"mFU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"mFY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mFZ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"mGb" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) +"mGq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"mGL" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"mHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"mHk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"mHm" = ( +/obj/item/clothing/gloves/yellow, +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 26 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"mHo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"mHp" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "75" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mHv" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"mHw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard/full_stack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"mHx" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"mHC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"mHI" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"mHL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mHN" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Interrogation"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"mHU" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/lv522/indoors/a_block/garden) +"mIe" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 5 + }, +/obj/structure/flora/bush{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/dorms) +"mIf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"mIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"mIv" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "102" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"mII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"mJo" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "67" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"mJq" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"mJE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access_txt = "100"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"mJK" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"mJQ" = ( +/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"; + layer = 3.1; + name = "trash bag"; + pixel_x = 2; + pixel_y = 20 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"mJS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"mKf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"mKx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"mKC" = ( +/obj/item/toy/plush/farwa{ + desc = "A Farwa plush doll. Once soft and comforting now just really wet."; + name = "Soaked farwa plush doll" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"mKJ" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"mKM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_x = -14; + pixel_y = 10 + }, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"mLx" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/fitness) +"mLD" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"mLO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"mLV" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ + density = 0; + layer = 3.1; + pixel_x = -1; + pixel_y = 25 + }, +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"mLW" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ + density = 0; + layer = 3.1; + pixel_y = 18 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"mLY" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"mMd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"mMh" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mMk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = -37; + pixel_y = 17 + }, +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) +"mMo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"mMu" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"mMv" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"mME" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Entrance Office"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mNa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"mNc" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"mNh" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "West LZ Storage"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"mNk" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"mNm" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"mNE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"mNX" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"mOt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"mOy" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"mOD" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"mOE" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/north_street) +"mOH" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"mOI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"mOO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2"; + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"mPb" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"mPc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"mPj" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/sewer) +"mPr" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"mPB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"mPP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"mPR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"mPW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) +"mPX" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"mPY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"mQd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/filt) +"mQe" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"mQj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mQl" = ( +/obj/structure/pipes/vents/pump, +/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/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"mQo" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"mQq" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"mQw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"mQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mQy" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/folder/black_random{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"mQz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"mQY" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mRb" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"mRo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"mRs" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"mRv" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/filt) +"mRw" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"mRx" = ( +/obj/structure/prop/dam/drill{ + layer = 3.1; + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"mRG" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"mRO" = ( +/obj/structure/prop/structure_lattice, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/east_central_street) +"mRR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_street) +"mRU" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mSa" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"mSb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"mSe" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"mSl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"mSs" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"mSE" = ( +/obj/structure/barricade/sandbags, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/north_street) +"mSI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"mSS" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"mSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"mTw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"mTA" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mTE" = ( +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"mTK" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/obj/structure/largecrate/guns/merc{ + icon_state = "case_double"; + layer = 3.1; + name = "supply crate"; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"mTL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"mTN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) +"mTW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"mTY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"mUh" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"mUl" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"mUr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"mUM" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"mUZ" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"mVe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mVg" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"mVh" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"mVm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/way_in_command_centre) +"mVt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bar) +"mVy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"mVE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"mVS" = ( +/obj/item/clothing/head/helmet/marine/grenadier{ + armor_bullet = 10; + desc = "Pairs with the M3-G4 heavy grenadier plating. A distant cousin of the experimental B18 defensive helmet. Decorated with a blue stripe the large hole in the side of this helmet somewhat limits its protection."; + name = "\improper damaged M3-G4 grenadier helmet"; + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"mWd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/lv522/landing_zone_2/ceiling) +"mWi" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mWq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"mWw" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"mWz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"mWF" = ( +/obj/item/trash/barcardine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"mWH" = ( +/obj/structure/closet/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"mWS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper B-Block Bar" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"mWT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"mXq" = ( +/turf/open/floor/strata/white_cyan3/southeast, +/area/lv522/indoors/a_block/medical) +"mXr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"mXC" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"mYv" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_1/ceiling) +"mYx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"mYC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"mYL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"mYQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"mYS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"mZe" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"mZi" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/central_streets) +"mZs" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/watatsumi/leftmid{ + layer = 3.3 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"mZQ" = ( +/obj/structure/barricade/deployable, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"mZW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"mZX" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"nab" = ( +/obj/structure/machinery/computer/crew/colony{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nar" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"nax" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"naH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"naM" = ( +/obj/item/explosive/grenade/high_explosive/m15{ + pixel_x = 8 + }, +/obj/item/prop/alien/hugger{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"naU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"nbc" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"nbj" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"nbn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"nbx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"nbE" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"nbP" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"nbQ" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ncA" = ( +/obj/item/clothing/suit/storage/marine/medium, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"ncI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"ncJ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"ncU" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ncZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"ndc" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob) +"nde" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"ndf" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen/damage) +"ndq" = ( +/turf/open/floor/plating, +/area/lv522/outdoors/w_rockies) +"ndC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"ndG" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"ndP" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nel" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"neT" = ( +/obj/item/stack/sandbags_empty/small_stack, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"nfe" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"nfk" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 21 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"nfr" = ( +/obj/structure/surface/table/almayer, +/obj/item/grown/nettle/death{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/seeds/glowshroom, +/obj/item/seeds/glowshroom{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"nfx" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"nfJ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"nfP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"nfU" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"nfV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"ngb" = ( +/obj/structure/surface/table/gamblingtable, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ngc" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"ngd" = ( +/obj/item/tool/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"ngi" = ( +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ngl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ngo" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"ngx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ngB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ngI" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"ngJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"ngQ" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ngV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"ngY" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"nhb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nhc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nhj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security) +"nhk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"nhm" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/matches{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nhs" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"nht" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"nhy" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"nhz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"nhD" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"nhI" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"nhY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nip" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) +"niu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"niC" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"niO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"niU" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"niZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"njm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"nkf" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_y = 15 + }, +/obj/structure/machinery/washing_machine{ + density = 0; + layer = 3.5; + pixel_y = 29 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nkr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"nkB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"nkH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Post Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"nkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"nla" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"nlz" = ( +/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ + density = 0; + layer = 2.8; + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"nlL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) +"nlV" = ( +/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ + density = 0; + layer = 2.9; + pixel_x = -6; + pixel_y = -18 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"nlW" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"nmh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"nml" = ( +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"nmG" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"nmK" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"nmV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) +"nne" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"nnh" = ( +/obj/structure/coatrack{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/coatrack{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_y = 5 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 10; + pixel_y = 27 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"nni" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"nnx" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/atm{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"nnz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"nnA" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nnB" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"noq" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"nor" = ( +/obj/item/stack/rods, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"noL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"noN" = ( +/obj/item/clothing/suit/storage/jacket/marine/RO{ + name = "\improper UA jacket" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"noT" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"npu" = ( +/obj/structure/filingcabinet{ + pixel_x = -9 + }, +/obj/structure/filingcabinet{ + pixel_x = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"npx" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "distribution" + }, +/turf/open/floor/plating, +/area/lv522/oob) +"npB" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"npD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"npH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"npR" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics{ + icon_state = "hydrotray4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"npT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"npY" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nqf" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"nqo" = ( +/obj/item/device/flashlight/lamp{ + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"nqB" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "distribution"; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"nqM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"nqY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bar) +"nrp" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"nru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"nrP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"nsv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"nsH" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/coagulation/icon4_8, +/area/lv522/oob) +"nsJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"nsK" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"nth" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"nto" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"ntq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -20; + pixel_y = 24 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/east_reactor/south) +"ntI" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ntL" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/reactor_garage) +"ntN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"nud" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"nug" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"nuq" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"nus" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nuG" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4; + pixel_y = 16 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"nuH" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nuL" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 8; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nuX" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"nvd" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"nvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nvr" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"nvw" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nvB" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"nvH" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = -9 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_y = -3 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"nvI" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"nvS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nvZ" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"nwa" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"nwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"nwj" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/dorms/glass) +"nwn" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"nwD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"nwN" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"nwU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"nxc" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"nxe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"nxs" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"nxw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan4/west, +/area/lv522/indoors/a_block/medical) +"nxN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/wishsoup, +/obj/item/tool/kitchen/utensil/spoon{ + layer = 2.9; + pixel_x = 10; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nxZ" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"nyd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"nyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nyx" = ( +/obj/structure/closet, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nyJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"nyP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"nyU" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nyV" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/garden) +"nzb" = ( +/obj/structure/surface/table/almayer, +/obj/item/disk{ + desc = "a 2000 Russian crime film. It is a sequel to the 1997 film Brother."; + name = "brat 2 disk" + }, +/obj/structure/machinery/recharger{ + layer = 2.9; + pixel_x = 5; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"nzH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"nzR" = ( +/obj/item/stack/sheet/metal, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/cargo_intake) +"nzZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ + density = 0; + pixel_x = -16; + pixel_y = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"nAa" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"nAm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"nAp" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"nAy" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"nAA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nAC" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nAI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"nAP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nBb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"nBe" = ( +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen/damage) +"nBj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"nBl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"nBs" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"nBv" = ( +/obj/item/prop/alien/hugger{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/gun/pistol/highpower{ + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"nBA" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"nBP" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"nBT" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"nBY" = ( +/obj/item/tool/scythe, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"nCa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/n_rockies) +"nCs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"nCt" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"nCO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"nCW" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nDn" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"nDo" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"nDt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"nDu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/sewer) +"nDM" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/outdoors/n_rockies) +"nDR" = ( +/obj/item/tool/wrench, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"nDW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"nEE" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 5 + }, +/obj/item/tool/kitchen/tray{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"nEX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"nEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"nFc" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"nFh" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"nFi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1/ceiling) +"nFj" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"nFm" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"nFu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken4, +/area/lv522/indoors/b_block/bar) +"nFw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"nFy" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/apc, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"nFA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"nFK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 6 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"nFN" = ( +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -8 + }, +/obj/item/tool/weldpack{ + pixel_x = -6; + pixel_y = 19 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"nFR" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"nFS" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"nGc" = ( +/obj/effect/alien/resin/sticky, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"nGB" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"nGC" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nGI" = ( +/obj/item/cell/apc{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/cell/hyper{ + pixel_y = -2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"nGX" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"nHl" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"nHs" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"nHG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"nIa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"nIj" = ( +/obj/structure/coatrack{ + pixel_x = -6; + pixel_y = 23 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"nIl" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"nIv" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nIz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"nID" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"nIH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"nIZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"nJm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"nJo" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"nJr" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"nJs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/tool/lighter/random{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"nJv" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/lone_buildings/engineering) +"nJM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"nJV" = ( +/obj/structure/noticeboard, +/turf/closed/wall/strata_outpost, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nKb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nKm" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"nKo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/weapon/gun/rifle/l42a{ + current_mag = null + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"nKK" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"nKL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"nKQ" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"nKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"nLm" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/dorms) +"nLy" = ( +/obj/item/pipe{ + dir = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"nLD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"nLL" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"nLT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"nLY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/filt) +"nMl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) +"nMn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood/wood_broken3, +/area/lv522/indoors/b_block/bar) +"nMB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"nMD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"nMH" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"nMX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"nNo" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nNz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"nNC" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"nNL" = ( +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle{ + pixel_x = -10; + pixel_y = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) +"nNM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"nNN" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"nNQ" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"nOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 8; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Medical"; + pixel_x = 16 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"nOu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"nOv" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"nOB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"nOZ" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nPb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"nPc" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"nPh" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"nPo" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"nPQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nPV" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"nQc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"nQk" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/prop/holidays/string_lights{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"nQu" = ( +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"nQx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"nQz" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"nQG" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"nQN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"nQQ" = ( +/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 = 21 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"nQT" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"nRg" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "73" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"nRs" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"nRv" = ( +/obj/effect/decal/cleanable/flour, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"nRA" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"nRE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nRK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"nRL" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"nRS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Executive Suite" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"nSd" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nSg" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"nSp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/trash/plate, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Pressuredoor"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"nSB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"nSD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"nSF" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"nSG" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"nSP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/soap/deluxe{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"nSY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"nTa" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"nTd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"nTg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"nTl" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/east_reactor) +"nTp" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"nTt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"nTv" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"nTD" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"nTJ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"nTO" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"nUd" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison, +/area/lv522/landing_zone_1) +"nUi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"nUl" = ( +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"nUF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"nUO" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"nUP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/tool/pen, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nVc" = ( +/obj/structure/powerloader_wreckage, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"nVq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"nVr" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"nVN" = ( +/obj/item/ammo_magazine/flamer_tank/empty, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"nWc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"nWq" = ( +/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/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"nWX" = ( +/turf/open/floor/prison/blue/northeast, +/area/lv522/indoors/a_block/hallway) +"nXw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "32" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"nXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"nXC" = ( +/obj/item/tool/wrench, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"nXD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"nXO" = ( +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nXT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"nXX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"nYn" = ( +/obj/structure/closet/crate, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/tool/pickaxe/silver, +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nYs" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"nYF" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"nYM" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"nYO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "70" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"nYW" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"nYX" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/north) +"nZd" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"nZn" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"nZJ" = ( +/turf/open/floor/strata/white_cyan4/west, +/area/lv522/indoors/a_block/medical/glass) +"nZL" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"nZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nZV" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "lower_1"; + layer = 5.1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon0_5, +/area/lv522/oob) +"oaq" = ( +/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/prison, +/area/lv522/indoors/c_block/garage) +"oax" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"oaz" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"oaA" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"oaH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"oaN" = ( +/obj/structure/cargo_container/kelland/right{ + layer = 3.5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"oaY" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"oba" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"obo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"oby" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"obW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"ocn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"ocD" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ocF" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ocH" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"ocK" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"ocN" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ocX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"odc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"odi" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"odr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"odA" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) +"odB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"odP" = ( +/obj/structure/largecrate/supply{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"odV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) +"oee" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"oet" = ( +/obj/structure/prop/dam/crane/cargo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"oeK" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"oeR" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"oeS" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"oeU" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"oeX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"ofc" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"ofi" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"ofv" = ( +/obj/structure/machinery/optable{ + density = 0; + pixel_x = 16; + pixel_y = -6 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"ofy" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4; + pixel_x = -9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"ofT" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) +"ogr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ogt" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"ogA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/pipe_water{ + pixel_y = 28 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/damage) +"ogB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"ogM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"ohH" = ( +/obj/structure/closet/crate, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"oic" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"oig" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 14 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"oij" = ( +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/filt) +"oim" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"oip" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) +"oiq" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) +"oiA" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"oiL" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oiP" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"oiV" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/obj/structure/machinery/disposal{ + density = 0; + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/tool/mop{ + pixel_x = 13; + pixel_y = 25 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oiW" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) +"oja" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"ojh" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"ojp" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"ojt" = ( +/obj/item/ammo_magazine/sentry{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"ojy" = ( +/obj/structure/closet/crate/trashcart{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ojH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"ojQ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"okk" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"okA" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"okM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"okN" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"okQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"ole" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"olG" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"olI" = ( +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"olQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"omI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"omT" = ( +/obj/structure/sign/safety/radio_rad{ + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"omX" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"onf" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/ausbush{ + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"onm" = ( +/obj/structure/barricade/deployable, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"onA" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"onJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"onX" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"ooa" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_x = -7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"ooe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"oow" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/device/defibrillator/compact, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"ooT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"opl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"opp" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"opx" = ( +/obj/structure/window/framed/corsat/hull, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"opG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"opJ" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/nw_rockies) +"opK" = ( +/obj/structure/machinery/computer/cameras{ + dir = 4; + network = null; + pixel_x = -16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"opO" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"opQ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"opR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"opS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"opT" = ( +/obj/structure/platform_decoration, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"oqg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"oqp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"oqN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"oqO" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ + layer = 4.4; + pixel_x = 13; + pixel_y = 19 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/south_street) +"oqZ" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/north) +"ora" = ( +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_x = -17; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"orm" = ( +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"orq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"orE" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"orF" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "23" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"orO" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"orP" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/obj/structure/cargo_container/watatsumi/right, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "smokestack" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"orU" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"osB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"osO" = ( +/obj/item/stack/sheet/metal, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"otD" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"otK" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ouc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Shared Dorms Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"oud" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"ouj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/outdoors/colony_streets/south_street) +"ouu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"ouC" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "81" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"ouS" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "67" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ovr" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"ovA" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ovT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"ovW" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"ovY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"owc" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges) +"owg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"owj" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"own" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"owT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Quartermaster" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"owX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"oxb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"oxf" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"oxh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oxq" = ( +/obj/item/paper{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"oxr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"oyf" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"oyr" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"oyz" = ( +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 8; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -2; + pixel_y = 19 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"oyI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"oyX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ozn" = ( +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ozs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ozy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell, +/obj/structure/machinery/cell_charger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ozB" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"ozF" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"oAd" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"oAm" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"oAu" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"oAF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"oBd" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"oBf" = ( +/obj/structure/bed/chair/wheelchair, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"oBj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oBk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"oBn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oBp" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"oBx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"oBF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"oBK" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer2{ + layer = 2.0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oBN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"oBR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"oCn" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + indestructible = 1 + }, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/lv522/oob) +"oCr" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"oCt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"oCu" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"oCy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"oCI" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/central_streets) +"oCP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"oDE" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) +"oDK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"oDR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"oEi" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/sewer) +"oEQ" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"oFn" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"oFr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"oFB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"oFC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"oFG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"oFH" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Casino Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"oFP" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"oFS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"oFW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"oGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"oGE" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"oGF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"oGH" = ( +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"oGJ" = ( +/obj/structure/machinery/optable, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"oGN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"oGV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"oGZ" = ( +/obj/item/stack/sheet/wood, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"oHi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"oHC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"oHY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"oIe" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "mining_secure_blast_1"; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) +"oIj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oIw" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"oID" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"oJj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"oJn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"oJu" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"oJz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"oJC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"oJD" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/east_reactor/south) +"oJJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"oJS" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/cargo_intake) +"oJU" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"oKc" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"oKe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"oKr" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"oKL" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oKM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"oKV" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oLa" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"oLd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"oLo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid"; + pixel_x = -2; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen/damage) +"oLU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"oMe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"oMi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"oMo" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"oMq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"oMs" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"oMN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"oNe" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"oNl" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"oNn" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"oNr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"oNL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/west_reactor) +"oOe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"oOw" = ( +/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/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"oOS" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_west_street) +"oOZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ashtray/bronze, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"oPc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"oPf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oPu" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"oQa" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oQd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"oQr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oQC" = ( +/obj/structure/platform_decoration, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"oQE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"oQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"oQG" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob) +"oQM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"oQN" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"oQZ" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"oRf" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"oRT" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oRU" = ( +/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ + density = 0; + pixel_x = 8; + pixel_y = 14 + }, +/obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ + density = 0; + layer = 3.1; + pixel_x = 17; + pixel_y = 31 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"oSj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"oSv" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_2) +"oSA" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/obj/item/tool/pickaxe, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"oTc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"oTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 5 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"oTD" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -7; + pixel_y = 27 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"oTO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"oTV" = ( +/obj/structure/girder/displaced, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"oTX" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"oTY" = ( +/obj/structure/flora/jungle/plantbot1, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"oUl" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"oUm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"oUq" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/way_in_command_centre) +"oVk" = ( +/obj/structure/largecrate/random{ + pixel_x = 1; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"oVs" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) +"oVt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"oVw" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"oVD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"oVJ" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"oVR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"oVX" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"oWh" = ( +/obj/item/cell/crap{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/cell/crap{ + pixel_y = 8 + }, +/obj/item/cell{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"oWu" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"oWF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"oWQ" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"oXa" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"oXd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"oXe" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"oXp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"oXH" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"oXQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"oXU" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"oXZ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"oYa" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"oYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"oYh" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"oYi" = ( +/obj/structure/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"oYv" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/lv522/indoors/a_block/medical/glass) +"oYO" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"oYR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/pole/fancy_cane, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"oYY" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"oZa" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"oZy" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"oZI" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"oZN" = ( +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"paa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"pab" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"pag" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/largecrate/random/secure{ + layer = 3.2; + pixel_x = 7; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"pal" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pan" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/shotgun/beanbag/empty, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"paE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"paF" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"paU" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"pbc" = ( +/obj/item/xeno_egg/alpha{ + pixel_x = -4; + pixel_y = 18 + }, +/obj/item/xeno_egg/alpha{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/closet/crate, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"pbh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"pbi" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "Reactor_garage_1" + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/reactor_garage) +"pbp" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"pbr" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pbC" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"pbN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"pcg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"pco" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"pcH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"pcI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pcQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/twohanded/fireaxe, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"pcX" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pde" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pdo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"pdq" = ( +/obj/structure/closet/wardrobe/medic_white, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"pdx" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"pdE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"pdX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"pdY" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -5; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"pea" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"pej" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"per" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"pet" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"pev" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"peI" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"peU" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"pfg" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/m56d, +/obj/item/ammo_magazine/m56d, +/obj/item/device/m56d_gun, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pfl" = ( +/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/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pfm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"pfo" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"pfs" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"pfB" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"pfN" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"pfQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"pfX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"pgm" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 21 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pgA" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_east_street) +"pgI" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"pgP" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"phe" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) +"phn" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"phr" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"phy" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"phF" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"phL" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -2 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"phV" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/north) +"phX" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"phZ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"pie" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/t_comm) +"pit" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"piv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"piz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/filt) +"piB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"piD" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"piE" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"piI" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"piY" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"piZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"pjo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"pjt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"pjJ" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/n_rockies) +"pjQ" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pjT" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/paper{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/toy/prize/deathripley{ + layer = 3.1; + pixel_x = 9; + pixel_y = 19 + }, +/obj/item/toy/prize/seraph{ + layer = 3.1; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"pke" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"pkg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"pku" = ( +/obj/item/tool/pen/clicky, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"pkv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pkw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/seeds/bananaseed{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/seeds/bananaseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"pkz" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"pkT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Reactor Control"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"pmw" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"pmB" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"pmQ" = ( +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"pnb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"pni" = ( +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"pns" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pnv" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"pnE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pnO" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pnX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"pod" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"pof" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"pou" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"pow" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"poD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"poP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"poQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"poZ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"ppd" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ppe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pph" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = -11 + }, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/flask/marine{ + layer = 3.1; + pixel_x = -2; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"ppv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"ppx" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_1) +"ppD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"ppJ" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/storage/fancy/cigar, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/m_gift, +/obj/item/coin/diamond, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"ppK" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/toy/bikehorn/rubberducky{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"ppR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pqe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) +"pqf" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/dorms) +"pqk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"pqD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pqE" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) +"pqJ" = ( +/obj/item/tool/surgery/WYautopsy, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"pqO" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"pqQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"pqR" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"pqV" = ( +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/kitchen/damage) +"pqX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"prh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"prs" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"prw" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"prz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"prM" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"prW" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + pixel_x = -7 + }, +/obj/item/newspaper{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"prX" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"prZ" = ( +/obj/item/stack/sheet/metal{ + layer = 2.5; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"psa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"psl" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"pss" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"pst" = ( +/obj/structure/machinery/seed_extractor, +/turf/open/floor/plating/platebotc, +/area/lv522/indoors/b_block/hydro/glass) +"psF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/mar40/lmg, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"psJ" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/palebush{ + pixel_y = 9 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"psQ" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.5; + pixel_y = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"psW" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"ptf" = ( +/obj/structure/coatrack{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"ptg" = ( +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"ptl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"ptm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"pty" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"ptB" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ptW" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"puh" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"pui" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"puv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"pux" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"puy" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"puP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"puV" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"puY" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pvn" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) +"pvA" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pvI" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"pvJ" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"pvP" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"pvS" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pvW" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"pwa" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_1) +"pwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/maintenance_jack, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"pwn" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"pwu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"pwz" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pwC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"pwK" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pwT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"pwX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"pxa" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 19 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"pxb" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"pxk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pxx" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"pxH" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"pxM" = ( +/obj/item/stack/sheet/metal, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"pyh" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/east) +"pyF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"pyK" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"pyP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"pza" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 3.1; + pixel_x = -11; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 15; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"pzg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pzo" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"pzr" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"pzx" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"pzz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pzD" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Fitness"; + pixel_y = 26 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"pzJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Human Resources Office" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"pzZ" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "4" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pAm" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"pAp" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"pAw" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"pAE" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_east_street) +"pAH" = ( +/obj/structure/closet/crate, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"pAW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"pBK" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/toy/deck{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"pBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"pBX" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/engine, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pCc" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"pCf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Marshals Office Armory"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"pCg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"pCk" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pCm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"pCn" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pCv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"pCD" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"pCI" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"pCJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/west_reactor) +"pCP" = ( +/obj/item/tool/hatchet, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"pCT" = ( +/obj/structure/machinery/power/terminal, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"pDd" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pDf" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) +"pDi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"pDm" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_street) +"pDw" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "5" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pDO" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"pDU" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"pEe" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pEj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/mucus, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"pEn" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -7; + pixel_y = 24 + }, +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "70" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pEs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) +"pEA" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"pED" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"pEW" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"pFe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"pFl" = ( +/turf/open/floor/almayer/w_y1/north, +/area/lv522/oob/w_y_vault) +"pFm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pFq" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pFH" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"pFP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"pGb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pGg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"pGh" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/outdoors/colony_streets/north_street) +"pGk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"pGl" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/lv522/indoors/a_block/kitchen) +"pGm" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"pGo" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pGp" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"pGB" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/north_street) +"pGF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"pGQ" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"pGT" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"pGW" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"pGY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"pHc" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pHo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/stack/sheet/metal/large_stack, +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pHy" = ( +/obj/structure/filtration/machine_96x96{ + icon_state = "disinfection" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"pHD" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "40" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pHM" = ( +/obj/structure/machinery/washing_machine{ + density = 0; + pixel_x = -9; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"pHT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"pHW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pIb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"pId" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pIA" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"pJp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pJW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"pJX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"pJZ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"pKg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"pKh" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"pKl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand/layer1, +/area/lv522/indoors/b_block/bridge) +"pKx" = ( +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"pKN" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"pKX" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges/op_centre) +"pLj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"pLn" = ( +/obj/structure/machinery/door/airlock/almayer/secure/colony{ + icon_state = "door_locked"; + locked = 1; + name = "Storage"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"pLp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/random/toy, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"pLr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"pLs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pLt" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/command_centre) +"pLu" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = 9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"pLL" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/prize/deathripley{ + pixel_x = -7; + pixel_y = 17 + }, +/obj/item/toy/prize/ripley{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"pLT" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; + pixel_x = -5; + pixel_y = 5 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"pLY" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"pLZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"pMe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"pMo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"pMq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"pMs" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/card/id/visa{ + desc = "A United Americas entry visa. A rare commodity out here on the rim."; + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/spacecash/c500{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"pMz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"pMM" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "61" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"pMT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/nw_rockies) +"pNf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"pNm" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"pNs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"pNM" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 5 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1"; + pixel_x = 7 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"pNY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"pOd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"pOs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"pOv" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"pOB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"pOK" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"pOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray/empty, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/outdoors/w_rockies) +"pPg" = ( +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"pPt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/nw_rockies) +"pPx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"pPC" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/nw_rockies) +"pQd" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"pQm" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"pQA" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"pQB" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"pQE" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges) +"pQW" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"pQZ" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"pRg" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"pRh" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/n_rockies) +"pRl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"pRr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"pRv" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"pRE" = ( +/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"; + layer = 3.1; + name = "trash bag"; + pixel_x = 4; + pixel_y = 21 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"pRH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"pRW" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"pSl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"pSE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pSO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"pTo" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"pTz" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"pTJ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/item/device/binoculars, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"pTN" = ( +/obj/structure/bed/bedroll{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"pTW" = ( +/obj/item/explosive/mine/active{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"pTZ" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"pUe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"pUo" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"pUp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) +"pUR" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"pUS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"pVe" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"pVn" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"pVo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"pVv" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"pVA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"pVO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) +"pVV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"pVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"pWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"pWn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"pWL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -12; + pixel_y = 8 + }, +/obj/item/device/radio{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"pWR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"pWU" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"pXa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"pXf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges) +"pXu" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"pXy" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"pXK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"pXT" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "22" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"pYc" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"pYu" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"pYN" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"pYO" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"pZf" = ( +/obj/item/stack/rods/plasteel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"pZk" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/chunk) +"pZo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"pZr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"pZw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"pZA" = ( +/obj/item/storage/secure/safe{ + pixel_y = 29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"pZF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"pZG" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3; + pixel_y = 9 + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) +"pZN" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"qaf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/plate{ + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 11 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = -11 + }, +/obj/item/reagent_container/food/snacks/superbiteburger{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qaq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"qaH" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qaJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"qaL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"qbk" = ( +/obj/structure/machinery/mill, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"qbG" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"qbI" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4; + pixel_y = 29 + }, +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + pixel_y = -3 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2"; + layer = 4.2; + pixel_y = 21 + }, +/obj/structure/sign/safety/high_voltage, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"qbW" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + dir = 1 + }, +/obj/structure/prop/tower{ + layer = 4 + }, +/obj/structure/cable/heavyduty, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) +"qcb" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"qct" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qcy" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"qcF" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"qcH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qcM" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"qdc" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"qdm" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"qdr" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qdu" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 6; + pixel_y = 20 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"qdC" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/walkman{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/device/cassette_tape/pop1{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"qdJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"qdL" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/east) +"qdS" = ( +/obj/structure/bed/sofa/south/grey/left, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"qeb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"qeg" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"qes" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"qeH" = ( +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) +"qfa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"qfb" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"qfh" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"qfi" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qfl" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) +"qfm" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"qfo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"qfu" = ( +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"qfJ" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qfK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"qfL" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qfT" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"qfV" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"qfW" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"qgj" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qgr" = ( +/obj/structure/machinery/light/small, +/obj/structure/ladder{ + height = 1; + icon_state = "ladder10"; + id = "hatch" + }, +/turf/open/floor/plating, +/area/lv522/oob) +"qgx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"qgz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"qgH" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"qgM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"qhi" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/sunnybush{ + icon_state = "fernybush_2"; + pixel_y = 10 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qhD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"qhK" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"qhO" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"qic" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"qig" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4; + pixel_x = -8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qim" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qiK" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"qiM" = ( +/obj/effect/spawner/gibspawner/robot, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"qiN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/damage) +"qiT" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"qiX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"qiY" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"qjn" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"qjp" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qjr" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"qjC" = ( +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"qjG" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"qjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"qka" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"qkw" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/turf/open/floor/prison, +/area/shuttle/drop1/lv522) +"qkQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"qle" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"qlx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"qly" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = -6 + }, +/obj/item/toy/dice{ + pixel_x = 6; + pixel_y = 17 + }, +/obj/item/toy/prize/ripley{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qlD" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs{ + layer = 3.1; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) +"qlI" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"qma" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"qmd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"qmh" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"qmy" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qmA" = ( +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"qmI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"qmW" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qnb" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qni" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qny" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qnz" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qnM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"qnP" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"qnZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"qoo" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "East_Lock"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"qot" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"qoG" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"qoP" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"qpm" = ( +/obj/structure/bed/bedroll{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"qpq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + layer = 3.1; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"qpz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) +"qpO" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "6" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qqa" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"qql" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"qqx" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"qqG" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qqJ" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"qqL" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"qrQ" = ( +/obj/item/device/m56d_post, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qsi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"qso" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"qsr" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/vial, +/obj/structure/machinery/cell_charger, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qss" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"qsC" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/beakers, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qsF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"qsH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"qsN" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"qsW" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"qsY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/w_y1/north, +/area/lv522/atmos/way_in_command_centre) +"qts" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"qtv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Emergency Engineering" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"qtx" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"qty" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qtG" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"qtN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qup" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"quw" = ( +/obj/item/clothing/head/welding, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"quD" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qvn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"qvw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qvJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"qvL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"qvM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"qvN" = ( +/obj/structure/prop/ice_colony/surveying_device{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qvY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qws" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = -12; + pixel_y = 12 + }, +/obj/item/toy/dice/d20, +/obj/item/toy/dice{ + pixel_x = 13; + pixel_y = 9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qwH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"qwP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"qxc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qxe" = ( +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"qxg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/toy/prize/honk{ + pixel_x = -10; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qxk" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"qxm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qxB" = ( +/obj/item/ammo_magazine/sniper{ + current_rounds = 0; + pixel_x = 10; + pixel_y = 12 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_magazine/sniper{ + current_rounds = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qxX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorm_north) +"qyl" = ( +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/landing_zone_1) +"qyF" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"qyG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"qyK" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qyS" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"qzk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"qzu" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"qzy" = ( +/obj/structure/largecrate/random/barrel{ + layer = 2.7 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = 6; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = -17; + pixel_y = -9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/invuln/fire{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"qzB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"qzE" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qzL" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bridge) +"qzP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"qzQ" = ( +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"qzT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"qzU" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"qAe" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"qAt" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"qAx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"qAA" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"qAM" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"qAU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"qBa" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"qBb" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"qBc" = ( +/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/double{ + dir = 1; + layer = 2.9; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"qBe" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"qBm" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qBr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"qBE" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"qBO" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"qBQ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = -3 + }, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/oob) +"qBV" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"qCu" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/n_rockies) +"qCy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"qCG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/colonist, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"qCS" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"qCY" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5"; + pixel_y = 10 + }, +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6; + pixel_y = 29 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qDe" = ( +/turf/open/floor/coagulation/icon8_8, +/area/lv522/oob) +"qDl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"qDr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"qDw" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"qDx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qDH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"qDL" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"qDR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"qDT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"qDV" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qEb" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"qEc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/cargo) +"qEf" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"qEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"qEk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"qEP" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"qEV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"qFp" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"qFt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"qFz" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/machine/ghettosmes, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"qFB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"qFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"qGf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"qGn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"qGC" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"qGI" = ( +/obj/structure/ore_box{ + pixel_x = 5 + }, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"qGK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"qGL" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qGM" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"qGP" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"qHi" = ( +/obj/structure/machinery/computer/arcade, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"qHj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"qHn" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"qHr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"qHD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"qHI" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qHP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"qIp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"qIu" = ( +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 16 + }, +/obj/item/bedsheet/ce{ + layer = 6.1; + pixel_y = 17 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"qIL" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"qIR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"qIZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"qJa" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Marshal Office Holding Cell" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"qJc" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"qJy" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"qJK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qJN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"qJT" = ( +/obj/structure/prop/server_equipment/yutani_server/off{ + density = 0; + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"qKd" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"qKi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"qKk" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"qKq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"qKr" = ( +/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 = 21 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"qKD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"qKM" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) +"qKT" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qKX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "26" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"qLe" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qLF" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"qLO" = ( +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"qLP" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"qLQ" = ( +/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/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"qMa" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"qMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"qMj" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"qMo" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"qMv" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"qMx" = ( +/obj/item/ammo_magazine/sniper{ + current_rounds = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"qMD" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"qNh" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"qNk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"qNl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"qNr" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"qNx" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"qNC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"qNK" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + layer = 3.1; + pixel_x = -7 + }, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_y = 10 + }, +/obj/item/toy/dice/d20{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qNR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"qOj" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -6; + pixel_y = 15 + }, +/obj/item/trash/plate, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"qOq" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"qOx" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"qOP" = ( +/obj/structure/pipes/vents/pump, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"qOU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"qPe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"qPA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qPM" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"qPU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"qQe" = ( +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"qQi" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"qQj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"qQr" = ( +/obj/item/trash/candle{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"qQA" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qQB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qQI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"qQK" = ( +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"qQQ" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"qQS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"qRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"qRn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"qRt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"qRz" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"qRB" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/ore/uranium, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"qRH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"qRM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"qRY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"qSa" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"qSw" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"qSH" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qSN" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"qSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"qTB" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"qTC" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"qTI" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = 7; + pixel_y = 17 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"qTT" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"qUh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"qUt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"qUL" = ( +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"qUU" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"qVm" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"qVp" = ( +/obj/item/explosive/mine/active{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"qVz" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"qVG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"qWa" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"qWf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"qWo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Service Tunnel"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"qWr" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/soap{ + pixel_x = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/stack/nanopaste{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"qWD" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"qWR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"qWT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"qXb" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"qXd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"qXg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"qXm" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"qXq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_y = 3 + }, +/obj/item/paper/janitor, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"qXA" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"qXG" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"qXH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toy, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"qXK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"qXY" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"qYa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"qYg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"qYo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness/glass) +"qYG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"qYP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"qYQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"qYY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"qZf" = ( +/obj/item/storage/belt/marine{ + pixel_x = 7; + pixel_y = 5 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"qZg" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical) +"qZq" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"qZs" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"qZT" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"qZY" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"rav" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"raA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"raE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"raH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"raI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) +"raS" = ( +/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/holohoop{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"raX" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rbb" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"rbc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"rbj" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/foamed_metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"rbq" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"rbt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/n_rockies) +"rbx" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"rbI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rbJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"rbP" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"rbT" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "UD6"; + name = "\improper Shutters" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rbV" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"rbX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"rcd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/poncho, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"rcr" = ( +/obj/structure/barricade/deployable, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"rcO" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1; + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"rcP" = ( +/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 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"rcZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rde" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"rdq" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = -4; + pixel_y = -3 + }, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/oob) +"rdB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"rdF" = ( +/obj/structure/closet/crate/medical, +/obj/item/tool/portadialysis, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"rdM" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent1"; + pixel_y = 11 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"rdT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway/damage) +"reo" = ( +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"rep" = ( +/obj/structure/machinery/smartfridge/seeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"res" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"rez" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"reM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"reO" = ( +/obj/item/tool/wirecutters, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"reQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"rfk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/dorm_north) +"rfl" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"rfv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rfx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/key/cargo_train{ + icon_state = "keys" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"rfE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"rfL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat{ + pixel_x = -5; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rfM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"rgD" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) +"rgE" = ( +/obj/structure/prop/ice_colony/flamingo{ + dir = 6; + layer = 3.1; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"rgG" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"rhr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"rhD" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" + }, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"rhU" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"rin" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) +"riq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"riC" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"riM" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"riP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"riT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"rji" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"rjn" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6; + pixel_y = 29 + }, +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2"; + pixel_y = -3 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2"; + layer = 4.2; + pixel_y = 21 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"rjO" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"rkk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"rkC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"rkE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block - Colony Operations Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"rkH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Casino Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"rlz" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "16" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rlB" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"rlV" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"rlW" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"rlZ" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"rmp" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"rmt" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/fitness/glass) +"rmw" = ( +/obj/item/stack/rods{ + pixel_y = 14 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"rmx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"rmA" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"rmJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rmX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"rnq" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/landing_zone_2) +"rns" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"rnB" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"rnG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"rnP" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"rnZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"rog" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"rom" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rot" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"rou" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"rox" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"roI" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_west_street) +"roS" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -20 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"rpm" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"rpn" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rpu" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness/glass) +"rpx" = ( +/obj/item/ammo_magazine/pistol/m1911{ + current_rounds = 0; + pixel_x = -17; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"rpA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rpE" = ( +/obj/item/tool/crowbar, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"rpN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"rpV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"rqh" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"rqk" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Workshop Storage"; + req_access_txt = "100"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"rqm" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"rqu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"rqE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"rqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rqP" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"rrf" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -2; + pixel_y = -8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"rrh" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"rrl" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rrC" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"rrT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"rsa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"rsg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"rsq" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"rsC" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rsF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"rsM" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"rsX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"rtf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"rtk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"rtr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"rtz" = ( +/obj/item/stack/sheet/wood, +/obj/item/ore/diamond, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"rtI" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/lv522/outdoors/nw_rockies) +"ruc" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"ruf" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"rum" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"ruv" = ( +/obj/structure/blocker/invisible_wall, +/obj/item/clothing/head/soft/ferret, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"ruE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"ruH" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"ruS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"rvb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) +"rvh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"rvt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"rvx" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"rvB" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rwo" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/tile/plasteel{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"rwr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"rwt" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"rwx" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"rwB" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"rwC" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"rwE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"rwH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rwK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"rwR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"rwX" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"rxn" = ( +/obj/item/tool/extinguisher, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"rxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/off{ + layer = 3.1; + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"rxt" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/lv522/outdoors/n_rockies) +"rxI" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_street) +"ryx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/casino) +"ryB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) +"ryI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "72" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rzk" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"rzl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"rzq" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"rzs" = ( +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"rzw" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/var3/stalkybush{ + pixel_y = 12 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"rzC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"rzI" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"rzR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"rzU" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"rzZ" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/landing_zone_2) +"rAf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"rAi" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"rAS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rBd" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"rBm" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) +"rBz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"rBB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"rBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"rBM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"rBN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"rBW" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 20 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rCb" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"rCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"rCf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"rCr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/tool/pen/red/clicky, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"rDc" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"rDi" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"rDj" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"rDm" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob) +"rDq" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rDQ" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"rDU" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"rEd" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"rEs" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"rEx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"rEF" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"rEG" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"rEM" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"rFf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"rFm" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"rFq" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1) +"rFr" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + pixel_x = 6 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"rFx" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"rFL" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) +"rFP" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rFT" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"rGa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"rGc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"rGe" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "3" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"rGi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"rGn" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"rGs" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/central_streets) +"rGz" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"rGD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"rGE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"rGU" = ( +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"rHt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"rHI" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"rHT" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"rHX" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/wy_chips_pepper, +/obj/item/trash/chips, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"rId" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"rIh" = ( +/obj/structure/fence{ + layer = 2.8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"rIn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"rIp" = ( +/obj/structure/machinery/light, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/b_block/bridge) +"rIA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_leg"; + name = "left leg"; + pixel_x = -11; + pixel_y = -8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"rJb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"rJo" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 8 + }, +/obj/structure/flora/bush/ausbushes/reedbush{ + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"rJt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"rJC" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"rJH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/kitchen/damage) +"rKi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) +"rKB" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/nw_rockies) +"rKI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/adv{ + pixel_y = 9 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"rKP" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"rKU" = ( +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"rKV" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"rKW" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"rLa" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"rLf" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"rLx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"rLD" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"rMa" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"rMc" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rMd" = ( +/obj/item/weapon/gun/boltaction{ + current_mag = null; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"rMk" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rMz" = ( +/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 = 21 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"rME" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/outdoors/colony_streets/north_east_street) +"rMF" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"rMR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"rNc" = ( +/obj/structure/prop/turbine_extras/left, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"rNj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/clothing/mask/cigarette, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"rNm" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"rNn" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"rNu" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rNv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -5 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"rNJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper B-Block - Hydroponics Airlock" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"rOf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"rOg" = ( +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"rOi" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"rOt" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "48" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"rOJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"rOM" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"rOT" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rPb" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"rPr" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rPu" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"rPD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"rPN" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"rPU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"rQc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"rQl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Overseers Office" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"rQu" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"rQB" = ( +/obj/structure/closet/crate/miningcar/yellow, +/obj/item/ore/coal, +/obj/item/ore/coal, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"rQL" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"rRq" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_east_street) +"rRP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 6; + pixel_y = 19 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"rSd" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"rSu" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"rSy" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"rSC" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rSK" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"rSL" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"rSP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/obj/item/newspaper{ + anchored = 1; + desc = "This is the Chunk and Dunks menu. It reads 'Starters chunky fried cheese chunky chicken giblets dunky donuts Main chunky mac and cheese chunky meat and gravy pizza galaxy pizza TM dunky grilled style steak imitation Deserts dunky refried ice cream OUT OF STOCK chunky chocolate moose dunky hash brown Drinks souto TM Original souto TM penguin week special chunk and dunk gravy soft drink chunky coffee CAUTION HOT dunky arcturian imitation tea"; + name = "menu"; + pixel_y = 26 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"rTa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"rTY" = ( +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"rUf" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rUr" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"rUx" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"rUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rUX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"rUZ" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"rVa" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"rVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/wy/mid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"rVq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/outdoor) +"rVs" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/east_reactor/south) +"rVG" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"rVN" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_A_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"rWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"rWA" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"rWF" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"rWO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"rWP" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/t_comm) +"rWS" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"rWW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/circuitboard/computer{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/circuitboard/computer{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"rXb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"rXf" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/storage/fancy/cigar/matchbook/exec_select{ + pixel_x = -9; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"rXl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"rXu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"rXH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"rXK" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/medical, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"rXL" = ( +/obj/structure/window/framed/shiva, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"rXS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"rYh" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"rYi" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"rYj" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"rYm" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"rYp" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"rYE" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"rYW" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"rZc" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"rZd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"rZg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) +"rZk" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"rZm" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"rZI" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"rZX" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "51" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sag" = ( +/obj/structure/ore_box, +/obj/item/tool/weldpack{ + pixel_y = 17 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"sao" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"sar" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"sat" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"saz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"saC" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"saY" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "flagpole"; + layer = 4.11; + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"sbe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Cargo Bay Storage"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"sbh" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_2/ceiling) +"sbt" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"sbA" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"sbK" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"sbV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"scc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"scB" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"scC" = ( +/obj/structure/surface/table/almayer{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"scR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"scV" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"scX" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"sdb" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"sdf" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sdt" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"sdC" = ( +/obj/structure/largecrate/random/secure{ + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"sdO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"sek" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"seF" = ( +/obj/structure/window/framed/corsat, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"seS" = ( +/obj/structure/machinery/suit_storage_unit{ + pixel_x = -2 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"seT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"seY" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"sff" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"sfn" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) +"sfs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"sfB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical/glass) +"sfI" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"sfL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"sfO" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"sfS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/northeast, +/area/lv522/indoors/a_block/medical/glass) +"sgg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"sgj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"sgm" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"sgs" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"sgx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2) +"sgT" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/lv522/indoors/a_block/corpo) +"shp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"shD" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"shM" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sid" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"sis" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) +"siL" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"siR" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = -6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_y = 10 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"siU" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"siX" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"sjo" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sjy" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/security) +"sjQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"sjT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sjU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"sjW" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/admin) +"sjY" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_west_street) +"skd" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"skf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 8 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -8; + pixel_y = 15 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"skt" = ( +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan4, +/area/lv522/indoors/a_block/medical) +"sky" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"slq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"slu" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"slx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"slD" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"slJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"slL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"slO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"slY" = ( +/obj/structure/surface/table/almayer, +/obj/item/co2_cartridge{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"smi" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"smN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"snb" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"sno" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"snO" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"snQ" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"snX" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_2/ceiling) +"sol" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"sop" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"soK" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"soU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"spe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"spm" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"sps" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"spH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"spJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"spQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/book{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/book{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sqc" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sqw" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sqF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"sqQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen/damage) +"sqR" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"sqW" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"srn" = ( +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"srq" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"srC" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"srE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"srJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"srS" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"ssh" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"ssm" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"ssZ" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"stf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"stx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"stL" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"stT" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"suh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"sun" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"suq" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"suF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"svo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LV522CIC_1"; + name = "remote door-control"; + pixel_y = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"svr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"svB" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"svE" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"svG" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"svI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/north_east_street) +"svK" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"svQ" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"svW" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor) +"svZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"swc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Kitchen-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = 9 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"swt" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"sww" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"swy" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"swF" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"swH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"sxa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + dir = 4; + layer = 3.2; + name = "Television set"; + network = null; + pixel_y = 3 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"sxe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"sxi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"sxk" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"sxo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"sxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/donut{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"sxC" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"sxD" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"sxQ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"syp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"syq" = ( +/obj/structure/machinery/conveyor{ + dir = 4; + id = "lv_gym_2"; + name = "treadmill" + }, +/obj/structure/machinery/conveyor_switch{ + id = "lv_gym_2"; + name = "treadmill switch"; + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"syt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Electronics Storage" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"syB" = ( +/obj/structure/ore_box, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"syF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"syH" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"syL" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"syW" = ( +/obj/item/explosive/mine/active{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"szi" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Meeting Room"; + pixel_y = 26 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"szw" = ( +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"szE" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob) +"szH" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"szY" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"sAa" = ( +/obj/structure/phone_base/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Sewer"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"sAp" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"sAt" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"sAU" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"sBl" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"sBp" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/east) +"sBt" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"sBI" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"sBN" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"sBX" = ( +/obj/structure/girder, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"sCr" = ( +/obj/structure/bed/chair/wood/normal{ + can_buckle = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"sCz" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"sCG" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 27 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 5; + pixel_y = -13 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"sDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"sDk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"sDq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"sDt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/cassette_tape/indie{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/storage/pouch/cassette{ + pixel_y = 5 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"sDv" = ( +/obj/structure/girder/displaced, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"sDA" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"sDG" = ( +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/engineering) +"sDQ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"sDR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/pouch/medkit/full_advanced, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"sDS" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/nw_rockies) +"sDW" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"sEa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"sEe" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"sEj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"sEr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"sER" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"sET" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"sEU" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"sFm" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"sFu" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"sFv" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe, +/obj/item/tool/crowbar, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"sFC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"sFD" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"sFE" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"sFJ" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"sFL" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"sFW" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_street) +"sGi" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/plush/farwa{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/toy/plush/farwa, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"sGn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"sGF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"sGJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"sGQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"sHh" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness/glass) +"sHq" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"sHt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"sHH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"sHQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"sHV" = ( +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"sHY" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sId" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) +"sIj" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "64" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"sIm" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/obj/item/clothing/under/marine/officer/pilot/flight, +/obj/item/clothing/suit/storage/jacket/marine/pilot{ + layer = 3.1; + pixel_y = 2 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) +"sIp" = ( +/obj/structure/prop/ice_colony/dense/planter_box{ + dir = 9 + }, +/obj/structure/flora/bush/ausbushes/var3/ywflowers{ + layer = 3 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"sIr" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"sIJ" = ( +/obj/item/trash/barcardine, +/obj/structure/largecrate/random/mini{ + pixel_x = -7; + pixel_y = 16 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"sIL" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"sIS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"sJf" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"sJi" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"sJo" = ( +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) +"sJI" = ( +/obj/structure/surface/table/almayer, +/obj/item/key/cargo_train, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"sJX" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"sKb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"sKx" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"sKz" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"sKD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_west_street) +"sKJ" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/east_central_street) +"sLa" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/CM_uniform{ + pixel_y = -2 + }, +/obj/structure/window/reinforced, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"sLk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"sLn" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/item/reagent_container/glass/beaker, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"sLw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sLG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"sLR" = ( +/obj/structure/prop/dam/van/damaged{ + layer = 3.1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sLU" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 23; + pixel_y = 29 + }, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"sMa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"sMl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"sMo" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"sMA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"sMH" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"sMJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"sMN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"sMV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"sMY" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/blackskirt{ + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"sNk" = ( +/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"sNx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"sNC" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/n_rockies) +"sNH" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sNQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"sOb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"sOz" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"sOA" = ( +/obj/item/clothing/head/welding{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sOB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"sOD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"sOM" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"sOR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"sOU" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/reactor_garage) +"sPk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"sPm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"sPn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"sPs" = ( +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"sPu" = ( +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"sPw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"sPE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = list(7,23,27) + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"sPN" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top_right, +/area/lv522/outdoors/w_rockies) +"sPQ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"sQk" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"sQq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) +"sQs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"sQw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"sQD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"sQN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"sRj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"sRu" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"sRA" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"sRI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"sRM" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) +"sRP" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"sRY" = ( +/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 = 6 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"sSg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/clothing/shoes/marine, +/obj/item/prop{ + desc = "Holy shit"; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "l_foot"; + name = "left foot"; + pixel_x = 5; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"sSx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"sSO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sSP" = ( +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Security"; + pixel_x = -16 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"sTd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"sTf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"sTA" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"sTF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) +"sTG" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"sTR" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"sTX" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"sTZ" = ( +/turf/open/floor/prison/darkpurple2/northwest, +/area/lv522/indoors/a_block/dorms) +"sUs" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sUv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"sUy" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"sVp" = ( +/obj/structure/pipes/unary/freezer{ + dir = 1; + icon_state = "freezer_1" + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"sVq" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sVu" = ( +/obj/structure/machinery/autolathe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"sVE" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"sVJ" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"sVP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"sWl" = ( +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"sWn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/cargo_intake) +"sWq" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) +"sWr" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"sWt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"sWA" = ( +/obj/structure/coatrack{ + pixel_y = 24 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/purple{ + pixel_x = -2; + pixel_y = 27 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"sWI" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"sWS" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"sWZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"sXf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"sXu" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"sXI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sXZ" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"sYl" = ( +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"sYu" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"sYH" = ( +/turf/open/floor/plating, +/area/shuttle/drop1/lv522) +"sYZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"sZf" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"sZq" = ( +/turf/open/gm/river, +/area/lv522/atmos/filt) +"sZr" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"sZC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"sZE" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"sZR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bedroom" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"taw" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"tax" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_street) +"taH" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"taJ" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cargo_container/kelland/left{ + layer = 3 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"taL" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"taP" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tbf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) +"tby" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"tbG" = ( +/obj/structure/closet/crate/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"tbP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) +"tbW" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"tck" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"tcJ" = ( +/turf/closed/shuttle/elevator{ + dir = 9 + }, +/area/lv522/indoors/c_block/mining) +"tcK" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"tdd" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Robert 'Boab' Macdonald" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tdf" = ( +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"tdi" = ( +/obj/structure/prop/dam/crane, +/obj/effect/spawner/random/toolbox{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"tdj" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"tdn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"tdp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"tdv" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 13 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"tdz" = ( +/obj/item/book/manual/marine_law{ + pixel_x = 7 + }, +/obj/item/book/manual/marine_law{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/book/manual/marine_law{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tdJ" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/east, +/area/lv522/indoors/a_block/dorms) +"tec" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tei" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tev" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "28" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"tex" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"teD" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"teF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/bridges/op_centre) +"teQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"teR" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"teW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"tfi" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"tfk" = ( +/turf/open/asphalt/cement, +/area/lv522/landing_zone_1) +"tfo" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tfC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"tfG" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"tfO" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"tfP" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"tgj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"tgn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/hallway) +"tgr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tgO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) +"thv" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"thw" = ( +/obj/item/tool/pen/blue/clicky{ + pixel_x = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"thy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_east_street) +"thB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"thM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) +"thT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"thU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -20; + pixel_y = 13 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) +"tia" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"tim" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"tiF" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"tiJ" = ( +/obj/item/explosive/grenade/incendiary/molotov, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"tiN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 2; + name = "\improper A-Block - Colony Medical Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"tiQ" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"tiZ" = ( +/obj/item/bananapeel{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -3; + pixel_y = -1 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_y = 11 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -7; + pixel_y = 35 + }, +/turf/open/gm/river, +/area/lv522/indoors/a_block/kitchen/damage) +"tje" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"tjk" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tjs" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cheesie, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tjC" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"tjK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Mining Control" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"tjM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"tjR" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"tjV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"tjW" = ( +/obj/item/stack/sheet/metal, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"tkd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"tkf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"tkj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"tkm" = ( +/obj/structure/curtain, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tkn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"tkr" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tkL" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + layer = 3.3; + pixel_y = 16 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"tkQ" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tla" = ( +/obj/structure/prop/invuln/remote_console_pod, +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + density = 1; + layer = 3.5; + pixel_y = -9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/shuttle/drop2/lv522) +"tlr" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tml" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"tmm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"tms" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"tmD" = ( +/obj/item/storage/firstaid/toxin/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"tmP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/prop/colony/canister{ + pixel_y = 11 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tnc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"tns" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"tnH" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) +"tnM" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tnX" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/reagent_dispensers/water_cooler{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"toc" = ( +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"toe" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_east_street) +"too" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 + }, +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/structure/machinery/door/window{ + dir = 2; + pixel_y = 6 + }, +/obj/structure/machinery/door/window{ + dir = 1; + pixel_y = 18 + }, +/obj/structure/window{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"tos" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/landing_zone_2/ceiling) +"tov" = ( +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_y = -7 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway/damage) +"toy" = ( +/obj/structure/filtration/machine_64x96{ + icon_state = "filtration_machine_B_1" + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"toA" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"toB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"toD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"toF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"toH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"toO" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"toU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tpa" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"tpg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"tpr" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"tps" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"tpx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"tpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"tpD" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tpJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6; + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"tpR" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"tpU" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "64" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"tpV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"tpZ" = ( +/obj/structure/curtain/red, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"tqe" = ( +/turf/open/floor/coagulation/icon0_8, +/area/lv522/oob) +"tqp" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"tqx" = ( +/obj/structure/barricade/handrail{ + layer = 3.7 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"tqQ" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 12; + pixel_y = -4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/north) +"trf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"trj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"tro" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"trv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/hallway) +"trC" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"trD" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2"; + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/cargo_container/kelland/right{ + layer = 3 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"trE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"trF" = ( +/obj/structure/machinery/computer/arcade{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"trG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"trM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/vert/white, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"trQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"trW" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/machinery/mill, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"trX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"trZ" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/chunk) +"tsb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/hallway) +"tsc" = ( +/obj/item/clothing/suit/storage/marine/medium/leader, +/obj/item/clothing/head/helmet/marine/leader{ + pixel_x = 9; + pixel_y = 14 + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"tsl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"tsm" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"tsn" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_east_street) +"tso" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"tsq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/under/redpyjamas, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"tst" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"tsN" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"tsT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/lv522/indoors/a_block/dorms) +"tsU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/security/glass) +"tta" = ( +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) +"ttb" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ttf" = ( +/obj/effect/landmark/corpsespawner/forecon_spotter, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/obj/effect/spawner/gibspawner/human, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"tty" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"ttC" = ( +/obj/item/weapon/gun/smg/nailgun, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tuc" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tum" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"tup" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/iron{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/platinum, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"tuz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"tuJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 11 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LV_522_Hydro-Lockdown"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"tuQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"tuX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tuY" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"tvq" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_wy"; + layer = 3.1 + }, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"tvs" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"tvv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Private Casino"; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tvN" = ( +/obj/structure/machinery/cryo_cell, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"twk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"twp" = ( +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"twv" = ( +/obj/structure/girder, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = 11; + pixel_y = -8 + }, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/dorms) +"twR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"twT" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"twY" = ( +/mob/living/simple_animal/mouse, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"txG" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"txK" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"txQ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"txW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"txY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"txZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"tyc" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"tyh" = ( +/obj/structure/dispenser/oxygen{ + layer = 4.5; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"tyy" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"tyL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tzd" = ( +/turf/closed/shuttle/elevator{ + dir = 4 + }, +/area/lv522/indoors/c_block/mining) +"tze" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/executive) +"tzz" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/largecrate/random/mini{ + pixel_y = 14 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tzJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/CMB, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"tzK" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tzM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"tAk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/tofukabob, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tAm" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "41" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tAr" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/prison, +/area/lv522/landing_zone_1) +"tAt" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"tAw" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"tAy" = ( +/obj/structure/window_frame/strata/reinforced, +/obj/item/stack/rods, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"tAz" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"tAC" = ( +/obj/effect/decal{ + icon = 'icons/mob/xenos/effects.dmi'; + icon_state = "acid_weak"; + layer = 2; + name = "weak acid" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"tAZ" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"tBb" = ( +/obj/structure/prop/dam/drill, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tBx" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"tBC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"tBO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"tBQ" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tBX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"tCa" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/obj/item/trash/uscm_mre{ + pixel_y = 10 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"tCd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tCg" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"tCh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"tCi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"tCq" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ + density = 0; + layer = 3.1; + pixel_y = 18 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"tCs" = ( +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"tCt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"tCE" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"tCH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"tCL" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"tCN" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/south_east_street) +"tCU" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"tCZ" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/central_streets) +"tDa" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tDd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tDe" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"tDj" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"tDo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tDF" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/east_central_street) +"tDH" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tDN" = ( +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"tDS" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/admin) +"tDZ" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"tEj" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "West_Lock"; + name = "remote door-control"; + pixel_x = -9; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "East_Lock"; + name = "remote door-control"; + pixel_x = 10; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Containers_west_LV522"; + name = "remote door-control"; + pixel_x = 1; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "West LZ Storage"; + name = "West LZ Storage control"; + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"tEB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) +"tEF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"tEV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/cell/crap{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/cell/hyper{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"tFm" = ( +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/stool, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"tFr" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"tFx" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/ceiling) +"tFB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 13 + }, +/obj/item/ashtray/bronze{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tGb" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tGh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tGl" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"tGo" = ( +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tGq" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/machinery/m56d_hmg{ + dir = 8 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"tHa" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"tHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tHl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"tHt" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) +"tHy" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"tHA" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"tHG" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "27" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tHJ" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"tIq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"tIu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Garage"; + pixel_x = -16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tID" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"tIQ" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"tIW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Kitchen-Lockdown"; + name = "remote door-control"; + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"tJa" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"tJd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/item/device/radio/off{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"tJf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"tJk" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -18 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"tJv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/static_comms/net_two, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"tJK" = ( +/obj/structure/surface/rack, +/obj/item/hardpoint/locomotion/van_wheels, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tJN" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"tKe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tKo" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_x = 17 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"tKx" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/east) +"tKB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"tKC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"tKF" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"tKM" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"tKT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"tKV" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"tLh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) +"tLr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"tLu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"tLw" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"tLE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"tLG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/c_block/cargo) +"tLV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"tLW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"tMi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"tMk" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"tMp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"tMv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"tMD" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"tMF" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) +"tMQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"tMT" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"tNc" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"tNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/hallway) +"tNg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/closet/crate/ammo, +/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/weapon/gun/rifle/lmg{ + current_mag = null + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"tNt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tNu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/black_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"tNy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"tNC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/hallway) +"tND" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "99" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"tNQ" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"tOc" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"tOd" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "2" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tOo" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"tOq" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"tOt" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/outdoors/colony_streets/north_east_street) +"tOx" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"tOC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"tOQ" = ( +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"tPb" = ( +/obj/structure/prop/structure_lattice, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"tPf" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"tPs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"tPv" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"tPw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tPB" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"tQb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"tQe" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"tQi" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"tQo" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tQs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) +"tQB" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tQH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"tQR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"tRe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"tRg" = ( +/obj/structure/ore_box, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"tRi" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"tRR" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/landing_zone_2/ceiling) +"tRT" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"tRU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"tSb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"tSc" = ( +/obj/item/storage/backpack/marine/engineerpack/satchel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"tSk" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"tSm" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"tSF" = ( +/obj/item/trash/uscm_mre, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"tSL" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/b_block/hydro) +"tSN" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"tSR" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"tTh" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/lever_action/r4t{ + pixel_y = 26 + }, +/obj/item/ammo_magazine/lever_action/marksman{ + layer = 3.1; + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/weapon/butterfly/switchblade{ + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"tTr" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -13 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"tTv" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/way_in_command_centre) +"tTD" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/east_central_street) +"tTI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"tTK" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/medical) +"tTR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/dorms) +"tTS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"tUf" = ( +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"tUE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"tUL" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"tUM" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"tUV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"tUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"tVr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"tVt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cargo_container/wy/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"tVv" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"tVC" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"tVM" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"tVU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"tWf" = ( +/obj/structure/surface/rack, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/machinery/light/double, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"tWk" = ( +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tWv" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) +"tWx" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"tWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"tWD" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"tWE" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"tWG" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"tWJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + req_one_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"tWP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"tWS" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"tWT" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"tXl" = ( +/obj/structure/bed/sofa/vert/white/top, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"tXu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"tXN" = ( +/turf/open/floor/strata/white_cyan3, +/area/lv522/indoors/a_block/medical/glass) +"tXP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) +"tXQ" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"tXW" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/south_east_street) +"tXY" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "74" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"tYd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"tYg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"tYi" = ( +/obj/structure/platform_decoration, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"tYB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"tYT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"tYY" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/north) +"tYZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"tZh" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/south_west_street) +"tZw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"tZF" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"tZL" = ( +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness/glass) +"tZO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"tZU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bar) +"uae" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"uan" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"uaI" = ( +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"uaR" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs{ + pixel_y = 12 + }, +/obj/item/restraint/handcuffs{ + pixel_y = 6 + }, +/obj/item/restraint/handcuffs, +/obj/item/weapon/classic_baton, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"uaY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"ubb" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"ubi" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/reagentgrinder{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"ubJ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ubN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"uca" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "83" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"ucq" = ( +/obj/structure/machinery/power/apc/power/south{ + start_charge = 20 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ucu" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ucy" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"ucI" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_west_street) +"ucL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"ucM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"udi" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"udA" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"udF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"udJ" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"udM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"ued" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"ueg" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"uet" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"uew" = ( +/obj/item/tool/screwdriver, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ufc" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) +"ufl" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/squares, +/area/lv522/oob) +"ufq" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"ufu" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"ufA" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"ufD" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) +"ufG" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) +"ufR" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"uge" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"ugp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"ugz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"ugF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"ugN" = ( +/obj/item/storage/backpack/marine/satchel/scout_cloak, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"ugR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"ugV" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"ugX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"uhv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"uhx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"uhJ" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"uhN" = ( +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/wishsoup{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"uhU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"uie" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"uis" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"uit" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uiC" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"uiK" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"uiM" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_1) +"uiS" = ( +/obj/structure/window_frame/strata, +/obj/item/shard, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/corpo) +"uiT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"uja" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"uje" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"ujg" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor/south) +"ujh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"uju" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"ujy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"ujN" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"ukp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/effect/spawner/random/powercell, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"ukK" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"ukY" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"ulg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"ulj" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"uln" = ( +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"ulZ" = ( +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"umf" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) +"umg" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"umi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"umk" = ( +/obj/structure/surface/rack, +/obj/item/ore/uranium, +/obj/item/ore/uranium, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"ums" = ( +/obj/item/stack/sheet/metal, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"umB" = ( +/obj/structure/closet/secure_closet/bar, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"umD" = ( +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"umE" = ( +/turf/open/floor/almayer/w_y0/north, +/area/lv522/oob/w_y_vault) +"umH" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"umR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"umY" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"une" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"unr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"unt" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/north_command_centre) +"unu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"unC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"unM" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"unS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uog" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"uok" = ( +/obj/structure/prop/invuln{ + desc = "big pile energy."; + icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; + icon_state = "pile_0"; + name = "barrel pile" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uoJ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"uph" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"upm" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"upr" = ( +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ups" = ( +/obj/structure/largecrate/random/case, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"upx" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) +"upz" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"upB" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"upK" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"upL" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) +"upY" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"upZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"uqa" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uqo" = ( +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"uqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"uqD" = ( +/obj/structure/prop/vehicles, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"uqP" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"urd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"urh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"urr" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5" + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"urv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window{ + dir = 2 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"urH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"urM" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"urU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"usc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"ust" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"usU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo) +"usZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"utb" = ( +/obj/structure/closet/crate/explosives, +/obj/item/storage/box/explosive_mines, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"utg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"utq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"utr" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"utR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Mining Control" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"utV" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"uuc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"uuo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/lv522/indoors/a_block/dorms) +"uuy" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"uuB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"uuC" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/clothing/mask/gas, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"uuD" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/t_comm) +"uuH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"uuJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"uuN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) +"uuX" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"uva" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "UD6 East"; + indestructible = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"uvg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"uvl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"uvn" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"uvq" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"uvC" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/buritto, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"uvG" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/n_rockies) +"uvK" = ( +/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, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"uvX" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) +"uwo" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"uwq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"uwF" = ( +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/north_east_street) +"uwT" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"uxa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"uxd" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"uxl" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"uxq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper C-Block - Cargo Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/bridge) +"uxK" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/crossbow, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/obj/item/toy/crossbow_ammo, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"uxT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"uyn" = ( +/obj/structure/cargo_container/kelland/right, +/obj/item/seeds/riceseed{ + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/south_west_street) +"uyA" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uyE" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"uyL" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"uyN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/head/helmet/marine/scout{ + armor_bullet = 5; + armor_melee = 15; + desc = "A custom helmet designed for USCM Scouts. Looks like this one has seen some action."; + name = "\improper Battered M3-S light helmet"; + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/weapon/gun/pistol/m1911, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"uyP" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"uyS" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"uzo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) +"uzp" = ( +/obj/structure/filtration/machine_96x96/indestructible{ + icon_state = "sedimentation_A_1"; + layer = 3.1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/oob) +"uzH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uzI" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/space) +"uzU" = ( +/obj/item/weapon/gun/revolver/spearhead, +/obj/item/clothing/head/soft/sec, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"uAa" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"uAb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"uAj" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"uAm" = ( +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"uAv" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"uAH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"uAI" = ( +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"uAV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"uBm" = ( +/obj/structure/girder, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/east_central_street) +"uBx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"uBC" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) +"uBP" = ( +/obj/structure/foamed_metal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"uBR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice9"; + pixel_x = -5 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/hallway) +"uBW" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"uCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"uCh" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"uCo" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"uCB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"uCC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/west_reactor) +"uCP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uDb" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"uDk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"uDs" = ( +/obj/item/clothing/head/CMB, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"uDC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/east) +"uDF" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 12; + pixel_y = -7 + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_street) +"uDT" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"uDV" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"uEd" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/closet/crate, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"uEi" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"uEn" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/gun/revolver/spearhead, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/op_centre) +"uEw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"uEE" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"uEM" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"uFk" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_street) +"uFz" = ( +/obj/item/clipboard, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"uFB" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"uFJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"uFN" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"uFZ" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"uGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"uGe" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/mining) +"uGn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"uGt" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"uGy" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_east_street) +"uGD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"uGE" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/south_west_street) +"uGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"uGT" = ( +/obj/item/explosive/mine/active, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"uHg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"uHt" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"uHC" = ( +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/north_command_centre) +"uHJ" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"uHW" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"uId" = ( +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uIe" = ( +/obj/structure/ore_box, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"uIk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"uIJ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"uIN" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"uIZ" = ( +/obj/structure/window_frame/strata, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/casino) +"uJd" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"uJg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"uJi" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/central_streets) +"uJq" = ( +/obj/structure/largecrate/random/mini, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"uJy" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"uJB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/casino) +"uJE" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"uKa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"uKe" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 20 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/east) +"uKw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"uKE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uKR" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"uKS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uLg" = ( +/obj/structure/sign/nosmoking_2{ + pixel_y = 28 + }, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"uLw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"uLx" = ( +/obj/structure/blocker/forcefield/vehicles, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"uLz" = ( +/obj/effect/landmark/hunter_secondary, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"uLE" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + desc = "A small desktop computer. Someone has switched to personal emails and disabled the inventory sort system."; + icon_state = "alert:2"; + name = "inventory computer" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uLF" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"uMc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"uMl" = ( +/obj/item/storage/bag/ore, +/obj/structure/surface/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"uMr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"uMx" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"uME" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/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/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"uMM" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"uMO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"uNd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"uNg" = ( +/obj/item/tool/pickaxe, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"uNi" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"uNp" = ( +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"uNq" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"uNt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"uNu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand/layer1, +/area/lv522/indoors/b_block/bridge) +"uNH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"uNK" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"uOe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/east) +"uOj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + layer = 3.1; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"uOm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"uOp" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"uOs" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"uOu" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"uOv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"uOD" = ( +/obj/structure/bed/stool, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"uOG" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"uOJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"uPa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"uPc" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"uPy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"uPC" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light, +/obj/item/ammo_box/magazine/misc/flares{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/ammo_box/magazine/misc/flares, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/lone_buildings/storage_blocks) +"uPE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"uPI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uPN" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uQf" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"uQn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"uQr" = ( +/obj/structure/bed/chair/wood/normal, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"uQs" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"uQI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"uQJ" = ( +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob) +"uQO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"uQQ" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"uQZ" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/n_rockies) +"uRf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/obj/structure/machinery/light/small, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"uRk" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uRr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Corporate Office Airlock"; + req_access_txt = "100" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) +"uRD" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"uSb" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/outdoors/n_rockies) +"uSg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) +"uSm" = ( +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"uSo" = ( +/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/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"uSv" = ( +/obj/effect/acid_hole, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/corpo) +"uSy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uSJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"uSY" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"uSZ" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = 7; + pixel_y = -9 + }, +/obj/structure/holohoop{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"uTd" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"uTh" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"uTv" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/corpo) +"uTT" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "47" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"uTY" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"uUa" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"uUd" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"uUf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"uUi" = ( +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"uUj" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security/glass) +"uUk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"uUu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/stack/sheet/mineral/uranium/small_stack{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"uUB" = ( +/obj/structure/foamed_metal, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"uUJ" = ( +/obj/structure/prop/invuln/ice_prefab, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"uUP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/helmetgarb/spacejam_tickets{ + desc = "Hubba hubba."; + icon = 'icons/obj/structures/props/posters.dmi'; + icon_state = "poster17"; + name = "\improper torn magazine page"; + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"uUU" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms/glass) +"uUV" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"uVh" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/executive) +"uVu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"uVy" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/damage) +"uVE" = ( +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"uVI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"uWs" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"uWD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"uWN" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"uWO" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"uXp" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"uXO" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"uXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/corpo/glass) +"uXX" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/north) +"uXY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"uYu" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"uYJ" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"uYK" = ( +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = 5 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/structure/reagent_dispensers/beerkeg{ + layer = 3.1; + pixel_x = -3; + pixel_y = 12 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"uYR" = ( +/obj/item/clothing/accessory/red, +/obj/item/clothing/under/liaison_suit/field{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"uYZ" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"uZj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) +"uZq" = ( +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"vac" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/filt) +"vae" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"vak" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"van" = ( +/obj/structure/prop/turbine_extras, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"vau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"vax" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/almayer/w_y0/north, +/area/lv522/atmos/way_in_command_centre) +"vaB" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + name = "Suit Storage Unit"; + pixel_x = 3 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"vaL" = ( +/obj/item/prop/colony/used_flare, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vaN" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"vaZ" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 25 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vbl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/garden) +"vbr" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vbF" = ( +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"vbH" = ( +/obj/vehicle/powerloader, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vbR" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vbW" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vbX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"vca" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"vce" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"vck" = ( +/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 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"vcl" = ( +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"vcn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"vcA" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "17" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vcR" = ( +/obj/structure/largecrate/random/mini/med, +/turf/open/floor/prison, +/area/lv522/landing_zone_2/ceiling) +"vcU" = ( +/obj/structure/barricade/wooden{ + dir = 4; + layer = 5.3 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"vcW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"vcX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"vcY" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"vcZ" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/north_command_centre) +"vda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"vde" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -3 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) +"vdf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vdg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"vds" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"vdJ" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"vdN" = ( +/obj/item/prop/colony/canister{ + layer = 3.1; + pixel_y = 16 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) +"vdW" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vdZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"vee" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"vew" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"veJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 8; + name = "\improper Wildcatters Office"; + panel_open = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"veK" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, +/obj/item/ammo_magazine/rifle/m4ra{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"veP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"veT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"veZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"vff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vfj" = ( +/obj/structure/bed/stool{ + buckling_y = 14; + pixel_y = 14 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"vfm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/north) +"vfC" = ( +/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/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"vfZ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"vgb" = ( +/obj/structure/platform, +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate"; + layer = 3.1; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vge" = ( +/obj/structure/prop/almayer/computers/sensor_computer2{ + density = 0; + pixel_y = 16 + }, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vgu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"vgw" = ( +/obj/structure/platform, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vgx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/admin) +"vgD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"vgK" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_street) +"vgN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper A-Block Dorms And Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"vgR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"vgS" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"vhn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) +"vic" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) +"vih" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"vin" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"viu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"viA" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"viC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"viE" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"viG" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"viN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"viO" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"viR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"vjl" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/east_reactor/south) +"vjr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vjt" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/glass) +"vjw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/east_central_street) +"vjB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vjD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) +"vjG" = ( +/obj/structure/largecrate/random{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"vjP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"vjR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"vjV" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"vjW" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/n_rockies) +"vkh" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"vkj" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"vkm" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"vkr" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"vku" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"vkD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"vkJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vkO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"vkU" = ( +/obj/item/tool/crowbar, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/north_west_street) +"vkV" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "26" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vkW" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "LZ1_Lockdown_Lo"; + name = "Emergency Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/ceiling) +"vlp" = ( +/obj/item/pipe, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vlq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"vlr" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vlX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"vmz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"vmG" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"vmQ" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/watatsumi/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"vnQ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"vnR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vnV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"vnW" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"voe" = ( +/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 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"vov" = ( +/obj/item/prop/alien/hugger{ + pixel_x = -6 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"vox" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/nw_rockies) +"voV" = ( +/obj/structure/surface/rack, +/obj/item/frame/table/almayer{ + pixel_y = 16 + }, +/obj/item/frame/table/almayer{ + pixel_x = 10; + pixel_y = 12 + }, +/obj/item/frame/table/almayer{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"voY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_east_street) +"vpa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"vpe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vpp" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/landing_zone_2/ceiling) +"vpr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"vpD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vpE" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vpL" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"vpN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/gun/smartgunner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vpR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"vpT" = ( +/turf/open/floor/coagulation/icon0_0, +/area/lv522/oob) +"vqm" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vqv" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"vqB" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 8 + }, +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock"; + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"vqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) +"vqE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vqL" = ( +/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/structure/tunnel, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"vqU" = ( +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vqX" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"vra" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"vrf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vrv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"vrF" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"vrW" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vtc" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"vtd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Radio Tower Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"vtm" = ( +/obj/structure/machinery/vending/walkman{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"vtZ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vuc" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"vuj" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"vun" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"vux" = ( +/obj/item/ammo_magazine/rifle/m4ra/ap{ + current_rounds = 0 + }, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"vuT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"vve" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"vvk" = ( +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/east) +"vvA" = ( +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) +"vvG" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"vvH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/hydro) +"vvZ" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"vwd" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"vwi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"vwl" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"vwt" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"vwx" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"vwG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"vwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"vwR" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"vwX" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"vxa" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/under/colonist, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vxf" = ( +/obj/item/pipe{ + dir = 9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"vxg" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"vxh" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"vxi" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"vxA" = ( +/obj/item/prop/alien/hugger, +/obj/item/clothing/head/helmet/riot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen) +"vxH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/engi{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"vxK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"vxM" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vxP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) +"vyf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"vyz" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms/glass) +"vyD" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bar) +"vyG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vzn" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bar) +"vzp" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vzr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) +"vzy" = ( +/obj/structure/prop/invuln/ice_prefab/trim{ + dir = 6 + }, +/obj/structure/cargo_container/watatsumi/leftmid{ + layer = 3.3 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"vzA" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"vAe" = ( +/obj/structure/machinery/bioprinter, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"vAm" = ( +/turf/open/floor/corsat/brown, +/area/lv522/oob) +"vAn" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"vAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"vAP" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"vAT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"vBB" = ( +/obj/structure/surface/table/gamblingtable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"vBD" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"vBJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"vBK" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vBN" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"vCj" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/stack/sheet/wood, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"vCx" = ( +/obj/structure/prop/invuln/ice_prefab/standalone{ + icon_state = "white" + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"vCz" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"vCG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"vCJ" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"vCW" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) +"vDa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"vDj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"vDr" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"vDv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"vDw" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"vDG" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_street) +"vDI" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"vDO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) +"vDT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen/damage) +"vEc" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vEf" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"vEx" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"vEz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"vEU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"vEW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"vFd" = ( +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"vFi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vFk" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/central_streets) +"vFD" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/gm/river, +/area/lv522/atmos/sewer) +"vFF" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"vFH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"vFU" = ( +/obj/structure/window_frame/strata, +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/t_comm) +"vGb" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"vGh" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/coagulation/icon8_3, +/area/lv522/oob) +"vGk" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vGp" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"vGs" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"vGv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"vGA" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/plate, +/area/lv522/oob) +"vGG" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"vGS" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"vGU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) +"vGZ" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"vHj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"vHv" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"vHw" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"vHz" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"vHN" = ( +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"vHS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/hallway) +"vIj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/vehicle/train/cargo/engine, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"vIn" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"vIy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"vIJ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vJj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"vJp" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_east_street) +"vJr" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"vJA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/prop/ice_colony/hula_girl{ + layer = 3.1; + pixel_x = 9; + pixel_y = 13 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"vJD" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/casino) +"vJE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"vJO" = ( +/obj/structure/cargo_container/kelland/right{ + layer = 2.9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"vJP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"vKd" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"vKe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"vKj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 8; + name = "\improper Dormitories" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/hallway) +"vKo" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vKr" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/filt) +"vKO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vKP" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"vKR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"vKU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate, +/obj/item/trash/eat, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"vLk" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vLp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"vLx" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"vLL" = ( +/obj/vehicle/powerloader{ + dir = 4; + layer = 3.5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) +"vMc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"vMu" = ( +/obj/item/weapon/gun/boltaction, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"vMJ" = ( +/obj/structure/surface/table/gamblingtable, +/obj/item/toy/deck{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"vMP" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/corpo) +"vMT" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "30" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"vNi" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"vNk" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/casino) +"vNr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"vNC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vNO" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"vNZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) +"vOb" = ( +/obj/structure/machinery/door_control{ + id = "mining_secure_blast_1"; + name = "Blast Door Control" + }, +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"vOe" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/w_rockies) +"vOr" = ( +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"vOy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) +"vOE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"vOL" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/lv522/indoors/a_block/dorms) +"vPa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"vPk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"vPs" = ( +/obj/structure/prop/dam/crane/damaged, +/obj/structure/platform, +/obj/item/prop/colony/canister{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vPt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"vPy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"vPz" = ( +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"vPE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"vPH" = ( +/obj/structure/barricade/wooden{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/kitchen/glass) +"vPN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"vPO" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 8; + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vQm" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat, +/obj/item/tool/pickaxe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"vRm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vRC" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"vSs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"vSt" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"vSy" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"vSM" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vSN" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/central_streets) +"vSU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"vSW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"vSZ" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"vTn" = ( +/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; + layer = 2.9 + }, +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.2; + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"vTO" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1) +"vUe" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/bridge) +"vUf" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/foamed_metal, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"vUr" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vUs" = ( +/obj/item/tool/wet_sign{ + pixel_x = -11; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/vomit, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"vUC" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"vUL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"vUN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"vUT" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/blink{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/toy/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"vVd" = ( +/obj/structure/cargo_container/kelland/left, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"vVm" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"vVt" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) +"vVR" = ( +/obj/structure/platform_decoration, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement3, +/area/lv522/landing_zone_1) +"vVS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"vWi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vWl" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"vWs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"vWx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/floor/bcircuit, +/area/lv522/indoors/a_block/admin) +"vWI" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vWO" = ( +/obj/structure/tent/big, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"vWV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/west_reactor) +"vXc" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"vXM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"vXN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"vXY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"vYj" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"vYq" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"vYu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"vYx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"vYK" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"vYL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"vYO" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"vYP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"vYT" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/phone_base/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "LZ1 Checkpoint"; + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/tool/stamp/denied{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/clothing/head/hardhat/white{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_1/ceiling) +"vZb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/east) +"vZc" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/lv522/indoors/a_block/dorms) +"vZy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"vZz" = ( +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/floor3/east, +/area/lv522/outdoors/colony_streets/south_street) +"vZA" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"vZN" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"vZP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"vZS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"vZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"wao" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"was" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/filt) +"waA" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/landing_zone_2) +"waQ" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"waZ" = ( +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"wbg" = ( +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"wbj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + density = 0; + pixel_x = 13; + pixel_y = 11 + }, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + density = 0; + pixel_x = -13; + pixel_y = 11 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"wbt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"wbw" = ( +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wbM" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"wbR" = ( +/turf/open/floor/plating, +/area/lv522/atmos/filt) +"wcc" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, +/turf/open/floor/plating/platingdmg3/west, +/area/lv522/indoors/a_block/admin) +"wci" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"wcr" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wcS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"wdd" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wdj" = ( +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) +"wdx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"wdS" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "5" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wdY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wef" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/sewer) +"wes" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wex" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/c_block/mining) +"weF" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/atm{ + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"weJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"weM" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 20 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = -9; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"weP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"weQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"weR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/dorms) +"weV" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2) +"wff" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv{ + desc = "An old TV hooked up to a video cassette recorder, you can even use it to time shift WOW."; + layer = 3.2; + name = "Television set"; + network = null; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"wfk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"wfl" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"wfo" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wfq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/lv522/indoors/a_block/dorms) +"wfA" = ( +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"wfF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Fitness Centre Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/fitness) +"wfP" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"wgf" = ( +/obj/structure/girder/displaced, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"wgm" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"wgn" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/outdoors/n_rockies) +"wgs" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"wgH" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wgR" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"wgU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob) +"wgW" = ( +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"whg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"whE" = ( +/obj/structure/cargo_container/horizontal/blue/top{ + layer = 3.1; + pixel_x = 20 + }, +/obj/structure/largecrate/random{ + pixel_x = -11; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"whI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/c_block/t_comm) +"whS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) +"whY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/admin) +"wic" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"wip" = ( +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) +"wis" = ( +/obj/item/reagent_container/spray/cleaner/drone{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) +"wiz" = ( +/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, +/area/lv522/indoors/a_block/fitness/glass) +"wiC" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/bridge) +"wiE" = ( +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wiI" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/security) +"wiK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wiU" = ( +/obj/item/pipe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"wiY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wja" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"wjf" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"wjv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"wjE" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wjF" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wjI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wkm" = ( +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/indoors/lone_buildings/storage_blocks) +"wko" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"wkT" = ( +/obj/structure/closet/basketball, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"wla" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) +"wlh" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"wlk" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"wlm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"wlw" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 13 + }, +/obj/item/ashtray/bronze{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"wly" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wlD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"wlE" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wlI" = ( +/obj/effect/landmark/monkey_spawn, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) +"wma" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"wmk" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) +"wmm" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/bridge) +"wmq" = ( +/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/prison/floor_plate, +/area/lv522/outdoors/colony_streets/south_west_street) +"wms" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"wmF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo) +"wmJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/landing_zone_2/ceiling) +"wmM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/vehicle/powerloader/ft{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/north) +"wni" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wnq" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wnu" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/w_rockies) +"wnA" = ( +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wnM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"wob" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"woq" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wos" = ( +/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/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"wov" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/oob) +"wow" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 19 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 19 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"woy" = ( +/obj/structure/largecrate/random{ + pixel_x = 5 + }, +/obj/structure/largecrate/random{ + layer = 3.1; + pixel_x = 19; + pixel_y = 18 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"woA" = ( +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.1; + pixel_y = 17 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"woG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) +"woR" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/gm/river, +/area/lv522/atmos/filt) +"woS" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"woU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"woV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wpn" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/casino) +"wpB" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"wpH" = ( +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/casino) +"wpW" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"wqa" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/colony_streets/north_west_street) +"wqh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"wqm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"wqn" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"wqp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wqv" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"wqA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"wqC" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wqM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/outdoor) +"wqU" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Dorms And Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"wrc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) +"wrh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"wrt" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"wrC" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/corpo) +"wrI" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/landing_zone_2) +"wrO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wst" = ( +/obj/structure/coatrack{ + pixel_x = -7; + pixel_y = 24 + }, +/obj/item/clothing/suit/storage/bomber{ + pixel_x = -8; + pixel_y = 28 + }, +/obj/item/clothing/shoes/laceup{ + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"wsA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"wsC" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"wsE" = ( +/obj/structure/coatrack{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/yellow{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/item/clothing/suit/storage/snow_suit/survivor/parka/green{ + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"wsT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 7; + pixel_y = 8 + }, +/mob/living/simple_animal/mouse, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wsY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"wtc" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"wth" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"wtE" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"wuy" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"wuB" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wuD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo2"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob) +"wuX" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/casino) +"wuY" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/corpo) +"wuZ" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"wvd" = ( +/obj/structure/prop/dam/crane/damaged, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"wvt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wvF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"wvY" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/kitchen) +"wwc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"wwe" = ( +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"wwt" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) +"wwG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) +"wwW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"wxK" = ( +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"wxZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"wyc" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"wym" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wyL" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"wyR" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"wze" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"wzt" = ( +/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/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"wzw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"wzx" = ( +/obj/item/tool/pickaxe/silver, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wzH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_west_street) +"wzT" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"wAx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/east) +"wAS" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"wBx" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"wBA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"wBD" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel{ + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"wBG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -3 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/west_reactor) +"wBP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio/off{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/light, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"wBY" = ( +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"wBZ" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness/glass) +"wCA" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"wCG" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"wCK" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"wCM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"wDa" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_2) +"wDj" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"wDz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/medical) +"wDI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wDQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wDZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"wEg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wEq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wEy" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"wEA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/east) +"wEO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"wEP" = ( +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"wER" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"wEW" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wFd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wFj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wFl" = ( +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"wFC" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"wFE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) +"wFH" = ( +/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/brown{ + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wFL" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"wFQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"wFS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Dorms And Office Airlock" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"wFW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"wGh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"wGk" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/landing_zone_1) +"wGB" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wGD" = ( +/obj/structure/surface/table/almayer, +/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_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"wGH" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"wGJ" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wGY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"wHd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"wHu" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"wHB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wHF" = ( +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wHM" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"wHU" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wIg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"wIi" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"wIq" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) +"wIr" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/b_block/bridge) +"wIu" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"wIE" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/organic/grass, +/area/lv522/indoors/a_block/garden) +"wIO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wIX" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"wJe" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"wJq" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"wJr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"wJv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"wJx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"wJH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wJM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"wJR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wJS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/lv522/indoors/b_block/bar) +"wKg" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/bridges/corpo) +"wKj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"wKn" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wKD" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"wKK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"wKN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"wKQ" = ( +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/central_streets) +"wLa" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"wLb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_east_street) +"wLd" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wLh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"wLn" = ( +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"wLp" = ( +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/east_reactor/west) +"wLU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"wMn" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/dorms) +"wMS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"wNg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_east_street) +"wNj" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"wNl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"wNz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"wNJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"wNX" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"wNZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) +"wOv" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wOT" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wPb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/filt) +"wPx" = ( +/obj/structure/girder, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"wPL" = ( +/obj/structure/platform_decoration/strata{ + dir = 8 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) +"wPN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_2) +"wPY" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wQa" = ( +/turf/open/auto_turf/shale/layer1, +/area/lv522/landing_zone_2) +"wQg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"wQh" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) +"wQE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical/glass) +"wQM" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"wQN" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"wQO" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/ceiling) +"wRc" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/bridges/corpo) +"wRk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"wRp" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) +"wRz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"wRB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) +"wRR" = ( +/obj/structure/window_frame/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"wRS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"wRV" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wSl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/outdoors/colony_streets/north_street) +"wSt" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"wSF" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wSP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/bridges) +"wTp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Sec-Armoury-Lockdown"; + name = "remote door-control" + }, +/obj/item/limb/hand/l_hand{ + dir = 1; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"wTr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/kitchen) +"wTt" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"wTv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) +"wTy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/kpack{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_small_bl_full"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/ammo_magazine/pistol/holdout, +/obj/item/ammo_magazine/pistol/holdout{ + pixel_x = 7 + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"wTG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 3 + }, +/obj/structure/machinery/microwave{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/a_block/kitchen) +"wTK" = ( +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wUo" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"wUq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"wUL" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/lv522/oob) +"wUX" = ( +/obj/item/stack/tile/plasteel, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) +"wVm" = ( +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "25" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"wVo" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -9; + pixel_y = 25 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"wVF" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "map_corpo2"; + pixel_x = -6; + pixel_y = 26 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "map_corpo"; + pixel_x = 6; + pixel_y = 26 + }, +/obj/structure/surface/rack, +/obj/item/storage/fancy/crayons{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/lv522/oob) +"wVU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_2/ceiling) +"wWe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"wWw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/t_comm) +"wWK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "61" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wWN" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"wWO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) +"wWX" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"wXa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"wXg" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"wXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"wXt" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"wXE" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"wXI" = ( +/obj/structure/prop/structure_lattice, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"wXK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"wXO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"wXX" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"wXY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wYa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"wYe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"wYm" = ( +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"wYB" = ( +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"wYC" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"wYE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"wYJ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"wYK" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV522CIC_1"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/admin) +"wYN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"wYR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) +"wZi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) +"wZl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/south/grey/right, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 11; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"wZq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Security Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"wZr" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"wZt" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wZw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"wZy" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"wZC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/hallway) +"wZG" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"wZW" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "2" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wZX" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "29" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"wZZ" = ( +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) +"xas" = ( +/obj/item/stack/rods, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xaz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"xaI" = ( +/obj/structure/platform_decoration, +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/colony_streets/north_west_street) +"xaX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"xbk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xbM" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_east_street) +"xbR" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/bridge) +"xce" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/command_centre) +"xci" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"xcj" = ( +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"xcw" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"xcE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"xcF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xcJ" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"xcP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xcT" = ( +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"xcV" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xcX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/mining) +"xdb" = ( +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.5; + pixel_y = 10 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xdf" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_street) +"xdk" = ( +/obj/structure/filingcabinet{ + density = 0; + layer = 3.1; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -10; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/lv522/indoors/c_block/mining) +"xdt" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xdD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) +"xdM" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) +"xdP" = ( +/obj/structure/machinery/light/double, +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bcircuit, +/area/lv522/indoors/c_block/mining) +"xdX" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xeg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges) +"xeh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"xei" = ( +/turf/closed/wall/strata_ice/dirty, +/area/space) +"xen" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"xes" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "66" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xez" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"xeA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"xeI" = ( +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/outdoor) +"xeU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"xfl" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/east_central_street) +"xfn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical) +"xfp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/dorms_fitness) +"xfu" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"xfw" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"xfB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xfD" = ( +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"xfP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/blue/southwest, +/area/lv522/indoors/a_block/admin) +"xfS" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/north_east_street) +"xfX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"xgt" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"xgA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/bridge) +"xgD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"xgH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/bridge) +"xgU" = ( +/obj/effect/spawner/gibspawner/robot, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/security) +"xgX" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"xgZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"xhC" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"xhD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/bridge) +"xhH" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"xhT" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"xij" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"xio" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"xiu" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"xiJ" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xiT" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Cargo Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) +"xiX" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) +"xjf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"xju" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"xjx" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/toilet) +"xjF" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/executive) +"xjP" = ( +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/colony_streets/south_west_street) +"xjW" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Sec-Kitchen-Lockdown" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen/glass) +"xjX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"xkh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xkH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"xkK" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "40" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xkO" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/toilet) +"xlp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper C-Block - Garage Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/garage) +"xly" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"xlC" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) +"xlK" = ( +/obj/structure/prop/invuln/fire{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/closed/shuttle/dropship3/tornado/typhoon{ + icon_state = "22" + }, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"xlN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"xlP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/kitchen) +"xlQ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/c_block/garage) +"xmf" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/alien, +/obj/item/pipe{ + pixel_x = -6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xmh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/casino) +"xmt" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorms) +"xmu" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/lv522/indoors/a_block/admin) +"xmT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) +"xmZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xno" = ( +/obj/item/weapon/gun/smartgun{ + current_mag = null + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"xnr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/c_block/cargo) +"xnA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) +"xnR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xnS" = ( +/obj/item/fuel_cell{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) +"xoe" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms) +"xon" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/whitegreenfull/southwest, +/area/lv522/indoors/a_block/fitness) +"xoK" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xpg" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/outdoors/nw_rockies) +"xpn" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"xpH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"xqa" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"xqb" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/grown/deathberries{ + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xqh" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/n_rockies) +"xqj" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/north_east_street) +"xqp" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/landing_zone_1) +"xrk" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/atmos/cargo_intake) +"xry" = ( +/obj/structure/surface/table/almayer, +/obj/item/seeds/potatoseed{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/seeds/potatoseed, +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"xrH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"xrN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"xrR" = ( +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo/glass) +"xsa" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) +"xsd" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"xsk" = ( +/turf/open/floor/plating/platingdmg1, +/area/lv522/indoors/a_block/dorms) +"xsq" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"xsu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"xsI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 9 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = 3 + }, +/obj/item/tool/kitchen/tray{ + layer = 2.9; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xsL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xsV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) +"xsZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/hairlesshide{ + pixel_y = -1 + }, +/obj/item/stack/sheet/hairlesshide{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/mining) +"xtb" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/a_block/fitness) +"xtf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"xto" = ( +/obj/item/storage/pouch/autoinjector/full, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/w_rockies) +"xtp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) +"xtK" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) +"xtO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security) +"xtS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/paper/wy, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xtW" = ( +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"xuk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"xuL" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"xuX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/sewer) +"xvg" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_2/ceiling) +"xvl" = ( +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/bridge) +"xvo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"xvq" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/oob) +"xvE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 16 + }, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xvI" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 12 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/oob/w_y_vault) +"xwc" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xwj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"xwt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"xwA" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/admin) +"xwB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"xwO" = ( +/obj/structure/cargo_container/seegson/left, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"xwR" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"xwY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/lv522/indoors/b_block/bar) +"xxk" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_x = -7; + pixel_y = 27 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xxs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/security) +"xxu" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/central_streets) +"xxw" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/hallway) +"xxz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 6; + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) +"xxB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "LZ1_Pressuredoor"; + name = "High Pressure Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/landing_zone_1/tunnel) +"xxO" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/blue/northwest, +/area/lv522/indoors/a_block/hallway) +"xxU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"xyk" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"xyn" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.2 + }, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/east_central_street) +"xyu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/lv522/oob/w_y_vault) +"xyA" = ( +/obj/structure/girder, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) +"xyC" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"xyG" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"xyU" = ( +/obj/structure/surface/table/almayer, +/obj/item/map/lv522_map, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"xyZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"xzf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"xzi" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + layer = 2.9 + }, +/obj/structure/machinery/door_display/research_cell{ + id = "Reactor_entry_1"; + pixel_x = 5; + pixel_y = -7; + req_access = null + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xzn" = ( +/turf/open/floor/prison, +/area/lv522/atmos/outdoor) +"xzq" = ( +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/nw_rockies) +"xzx" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/south_street) +"xzK" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_east_street) +"xzL" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"xzP" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/obj/structure/largecrate/supply/floodlights{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_east_street) +"xAq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan3/west, +/area/lv522/indoors/a_block/medical/glass) +"xAF" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/b_block/hydro) +"xAJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"xAO" = ( +/turf/open/gm/river, +/area/lv522/indoors/a_block/fitness/glass) +"xAP" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xAZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"xBb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) +"xBo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"xBs" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"xBE" = ( +/obj/structure/machinery/disposal, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/lv522/indoors/a_block/dorm_north) +"xCd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xCi" = ( +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) +"xCx" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xCJ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Dormitories"; + welded = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/dorm_north) +"xCN" = ( +/obj/item/clothing/under/shorts/blue{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"xCR" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xCT" = ( +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorm_north) +"xCV" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/corpo_fitness) +"xDb" = ( +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/east_central_street) +"xDl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"xDp" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"xDt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"xDu" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) +"xDz" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_street) +"xDA" = ( +/obj/item/weapon/gun/boltaction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/cargo) +"xDC" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1; + icon_state = "fab_2" + }, +/obj/structure/prop/invuln/ice_prefab{ + icon_state = "fab_2" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"xDD" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xDI" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/tool/lighter/random{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"xDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"xDM" = ( +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"xDP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/security/glass) +"xDR" = ( +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xEb" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"xEs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/n_rockies) +"xEw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_street) +"xEB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"xEZ" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"xFd" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xFp" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"xFs" = ( +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"xFv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xFx" = ( +/obj/structure/largecrate, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/landing_zone_1) +"xFG" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"xFJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"xFV" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/lone_buildings/chunk) +"xFY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo) +"xGa" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"xGc" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"xGf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"xGk" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 13; + pixel_y = 29 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"xGv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/medical_supply_link/green, +/turf/open/floor/strata/white_cyan3/east, +/area/lv522/indoors/a_block/medical/glass) +"xHi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"xHj" = ( +/obj/structure/prop/invuln/minecart_tracks, +/obj/structure/closet/crate/miningcar{ + layer = 3.1; + name = "\improper materials storage bin"; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal/small_stack, +/obj/item/ore/slag, +/obj/item/ore/slag, +/obj/item/ore/slag, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xHl" = ( +/obj/structure/closet/bodybag, +/obj/structure/curtain/medical, +/turf/open/floor/strata/white_cyan2/west, +/area/lv522/indoors/a_block/medical/glass) +"xHp" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"xHr" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/c_block/casino) +"xHs" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) +"xHA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"xHD" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"xHT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"xIe" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"xIv" = ( +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) +"xIW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"xIY" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/lv522/landing_zone_forecon/UD6_Typhoon) +"xJd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xJp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper A-Block Security Airlock"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/op_centre) +"xJr" = ( +/turf/open/floor/whiteyellowfull/east, +/area/lv522/indoors/a_block/corpo) +"xJB" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison, +/area/lv522/landing_zone_2/ceiling) +"xJL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"xJP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"xKg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) +"xKk" = ( +/turf/closed/wall/strata_outpost_ribbed, +/area/lv522/outdoors/colony_streets/south_west_street) +"xKw" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/b_block/hydro) +"xKH" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xKO" = ( +/obj/structure/prop/server_equipment/yutani_server{ + pixel_y = 17 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2/ceiling) +"xLb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/bridge) +"xLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"xLl" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"xLo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges/corpo) +"xLq" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"xLG" = ( +/obj/structure/largecrate/random, +/obj/structure/largecrate/random{ + pixel_y = 16 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xLL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/davenport{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xLP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/ceramic_plate, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"xLT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"xLU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"xLY" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"xMq" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/landing_zone_2) +"xMA" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -11; + pixel_y = 20 + }, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"xMO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"xMX" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard/full_stack, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/c_block/cargo) +"xNd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"xNe" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms/glass) +"xNi" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xNB" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"xNK" = ( +/turf/open/floor/prison/blue/southeast, +/area/lv522/indoors/a_block/admin) +"xNT" = ( +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"xOt" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"xOw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"xOx" = ( +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"xOy" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel/far) +"xOD" = ( +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_west_street) +"xOF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xOJ" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"xPa" = ( +/obj/structure/machinery/conveyor, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"xPg" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/mining) +"xPo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"xPx" = ( +/obj/structure/prop/invuln/ice_prefab{ + dir = 9 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"xPA" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) +"xPF" = ( +/turf/closed/shuttle/elevator, +/area/lv522/indoors/c_block/mining) +"xPG" = ( +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) +"xPH" = ( +/turf/open/floor/prison, +/area/lv522/landing_zone_2/ceiling) +"xPI" = ( +/obj/item/clothing/shoes/jackboots{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"xPJ" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/east) +"xPK" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"xPN" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) +"xPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/prop/alien/hugger{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/item/ashtray/glass{ + icon_state = "ashtray_bork_gl"; + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/a_block/executive) +"xQc" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/east_reactor/south) +"xQj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"xQk" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/hydro) +"xQq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/ship, +/area/lv522/atmos/way_in_command_centre) +"xQA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/tool/pen/blue/clicky, +/obj/item/device/flashlight/lamp{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/garage) +"xQK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/outdoor_bot) +"xQZ" = ( +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) +"xRn" = ( +/obj/item/clothing/head/hardhat, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"xRw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/garage) +"xRF" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"xRQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/recharger{ + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"xRS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Generator Room"; + welded = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) +"xRU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "LZ1_Lockdown_Lo"; + name = "remote door-control"; + pixel_y = 4 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/landing_zone_1/ceiling) +"xSi" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"xSm" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/b_block/hydro) +"xSv" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"xSD" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) +"xSP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/trash/wy_chips_pepper, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/admin) +"xSQ" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_street) +"xSW" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/landing_zone_1/ceiling) +"xTe" = ( +/obj/structure/prop/dam/truck, +/obj/structure/prop/holidays/wreath{ + layer = 4.1; + pixel_x = -1; + pixel_y = 16 + }, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"xTJ" = ( +/obj/item/tool/kitchen/utensil/pknife{ + pixel_x = -9 + }, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/dorms) +"xTT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"xTV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) +"xUe" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_fuel" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/garage) +"xUh" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"xUq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/lv522/atmos/reactor_garage) +"xUu" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"xUz" = ( +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/bridges/op_centre) +"xUJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/security) +"xUT" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/strata/white_cyan3/north, +/area/lv522/indoors/a_block/medical) +"xUV" = ( +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) +"xVd" = ( +/turf/closed/wall/strata_outpost_ribbed, +/area/lv522/indoors/lone_buildings/engineering) +"xVe" = ( +/obj/structure/sink{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/cyan2/east, +/area/lv522/indoors/a_block/medical) +"xVl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"xVs" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"xVv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spider/spiderling/nogrow, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"xVz" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) +"xVG" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) +"xVX" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_east_street) +"xVY" = ( +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges/garden_bridge) +"xWb" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_west_street) +"xWm" = ( +/obj/item/prop/colony/canister{ + dir = 8; + layer = 3.1; + pixel_y = 16 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) +"xWB" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"xXg" = ( +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/east_central_street) +"xXo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bed/chair{ + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"xXq" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) +"xXE" = ( +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) +"xXL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/dorms/glass) +"xXN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/dorms) +"xXR" = ( +/obj/structure/machinery/colony_floodlight{ + density = 0; + layer = 4.3; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"xYn" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/trash/plate{ + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"xYv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"xYx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen) +"xYA" = ( +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"xYD" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) +"xYE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security) +"xYU" = ( +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"xYV" = ( +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xZb" = ( +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) +"xZc" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/cargo) +"xZe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"xZi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"xZv" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xZx" = ( +/obj/structure/platform_decoration, +/obj/item/reagent_container/food/drinks/flask/marine, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"xZz" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"xZD" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/indoors/lone_buildings/storage_blocks) +"xZE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"xZF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) +"xZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/b_block/bar) +"xZP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_east_street) +"xZX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"yaf" = ( +/obj/structure/surface/rack, +/obj/item/tool/pickaxe/plasmacutter, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"yag" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/fitness) +"yaj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"yay" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/c_block/cargo) +"yaF" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"yaH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/sewer) +"yaI" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/lv522/indoors/a_block/dorms) +"yaK" = ( +/obj/structure/machinery/light/double/blue{ + dir = 8; + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/minecart_tracks{ + dir = 8 + }, +/obj/structure/prop/invuln/minecart_tracks/bumper{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) +"yaR" = ( +/obj/structure/window_frame/strata, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "LV_522_Hydro-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/b_block/bridge) +"ybj" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"ybn" = ( +/obj/item/ammo_magazine/rifle/boltaction, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/c_block/t_comm) +"ybu" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/hallway) +"ybz" = ( +/turf/open/asphalt/cement, +/area/lv522/landing_zone_2) +"ybO" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/landing_zone_1) +"ybS" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_street) +"ybX" = ( +/obj/structure/platform/stair_cut, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/c_block/garage) +"yca" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/kitchen/glass) +"ycw" = ( +/obj/structure/girder/reinforced, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"ycE" = ( +/turf/open/floor/carpet, +/area/lv522/indoors/b_block/bar) +"ycH" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"ycJ" = ( +/obj/structure/bed/chair/comfy, +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/floor_marked/southwest, +/area/lv522/outdoors/colony_streets/north_west_street) +"ycM" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"ydb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) +"ydo" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/lv522/indoors/c_block/mining) +"ydu" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"ydN" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/kitchen) +"yed" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/corpo/glass) +"yej" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"yek" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/south_east_street) +"yel" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/strata/white_cyan1/east, +/area/lv522/indoors/a_block/medical) +"yev" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) +"yeH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"yeN" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "62" + }, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"yeV" = ( +/obj/structure/machinery/door_control/brbutton{ + id = "Marked_2"; + pixel_y = 26 + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) +"yfj" = ( +/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 + }, +/obj/structure/holohoop{ + density = 0; + pixel_y = 27 + }, +/obj/item/toy/beach_ball/holoball{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"yfk" = ( +/obj/item/tool/lighter/random{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/paper/crumpled/bloody{ + pixel_x = -9 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) +"yfm" = ( +/obj/structure/cargo_container/kelland/left{ + layer = 4.13 + }, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/outdoors/colony_streets/north_east_street) +"yfu" = ( +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) +"yfH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/b_block/hydro) +"yfK" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_2) +"yfX" = ( +/obj/item/weapon/gun/boltaction{ + pixel_y = -8 + }, +/obj/item/prop{ + desc = "Holy shit"; + dir = 8; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "head_m"; + name = "human head"; + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/clothing/head/collectable/tophat{ + layer = 3.1; + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/casino) +"ygn" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/lv522/indoors/b_block/hydro) +"ygq" = ( +/obj/item/ammo_magazine/pistol/m1911{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/structure/platform, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_east_street) +"ygy" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/indoors/a_block/bridges) +"ygF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/bridges) +"ygG" = ( +/obj/item/stack/sheet/wood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) +"ygH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/security/glass) +"ygI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/north) +"ygN" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) +"ygW" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) +"yhi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) +"yhj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_street) +"yhn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms/glass) +"yhs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_forecon/UD6_Tornado) +"yhz" = ( +/obj/structure/window_frame/corsat, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) +"yhK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) +"yie" = ( +/obj/structure/largecrate, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) +"yim" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"yiM" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) +"yiP" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) +"yiV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) +"yiZ" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate"; + layer = 3.1; + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/east_central_street) +"yjj" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/fake_wood, +/area/lv522/atmos/east_reactor/east) +"yjm" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"yjp" = ( +/obj/structure/machinery/colony_floodlight{ + layer = 4.3 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) +"yjr" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/under/marine{ + pixel_x = 18; + pixel_y = 20 + }, +/obj/item/prop{ + desc = "Holy shit"; + dir = 8; + icon = 'icons/mob/humans/species/r_human.dmi'; + icon_state = "head_m"; + name = "human head" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant David 'Danny' Walts" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/corpo) +"yjt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) +"yjw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Sec-Kitchen-Lockdown"; + name = "\improper Storm Shutters" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/kitchen) +"yjK" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/tool/weldingtool, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/south_east_street) +"yjO" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/prison/blue_plate/north, +/area/lv522/indoors/a_block/admin) +"yjP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) +"yjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/south_west_street) +"ykp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/strata/white_cyan1, +/area/lv522/indoors/lone_buildings/chunk) +"ykq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) +"ykO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/lv522/indoors/a_block/fitness) +"ykT" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/bridges/op_centre) +"yle" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bodybag, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/hallway) +"yli" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) +"ylo" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/indoors/lone_buildings/storage_blocks) +"ylp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/t_comm) +"ylC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/n_rockies) +"ylU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) +"ylY" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) +"ylZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/lv522/indoors/a_block/bridges/op_centre) + +(1,1,1) = {" +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +"} +(2,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(3,1,1) = {" +bMX +cpy +abo +abS +ajM +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +auG +auG +vtc +vtc +vtc +vtc +vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(4,1,1) = {" +bMX +cpy +abo +acJ +akl +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +vtc +vtc +vtc +vtc +vtc +vtc +vtc +nTa +vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +okN +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(5,1,1) = {" +bMX +cpy +cpy +adI +akM +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +dvO +orm +orm +wPL +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +lOT +lOT +lOT +lOT +cpy +cpy +cpy +vtc +vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +okN +jWT +oax +wXg +pxb +goR +pxb +pxb +pxb +bTo +iwE +iwE +iwE +wSF +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(6,1,1) = {" +bMX +cpy +abo +adN +akM +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +dvO +hJq +kiT +tfO +viE +cpy +cpy +cpy +auG +auG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +auG +vtc +vtc +vtc +vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +sRA +cpy +cpy +sRA +rWS +rWS +rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +xFx +goR +pxb +pxb +pxb +pxb +pxb +pxb +nQz +tPf +unM +hmb +hmb +hmb +jqO +tPf +vYK +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(7,1,1) = {" +bMX +cpy +abo +afp +fwR +abo +abo +abo +abo +abo +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +hJq +qZf +wGH +cpy +viE +cpy +cpy +vtc +vtc +vtc +vtc +cpy +cpy +cpy +cpy +auG +auG +vtc +vtc +vtc +vtc +vtc +vtc +uWO +uWO +uWO +lQS +gsZ +gOj +han +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +rWS +rWS +rWS +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eGY +pxb +xqp +pxb +pxb +pxb +nQz +tPf +oKc +pdx +hmb +hmb +eiC +hmb +hmb +pdx +sOM +tPf +vYK +pxb +xqp +pxb +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(8,1,1) = {" +bMX +cpy +abo +afp +akM +qfl +abo +sIJ +rzs +mCy +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +aVg +adl +cpy +cpy +pOK +rQL +cpy +auG +vtc +vtc +vtc +vtc +vtc +cpy +cpy +vtc +vtc +vtc +vtc +vtc +vtc +vtc +vtc +uWO +pit +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +rWS +rWS +rWS +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +ePl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +okN +pwa +pwa +xqp +xqp +xqp +nQz +oKc +hmb +hmb +hmb +onA +vdJ +eiC +wqn +wqn +hmb +hmb +hmb +sOM +vYK +pxb +xqp +pwa +pxb +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(9,1,1) = {" +bMX +cpy +cpy +afp +ann +asI +qUt +akM +fwc +bVG +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +aVg +tCa +cpy +qIu +viE +cpy +cpy +auG +vtc +vtc +vtc +vtc +vtc +oip +vtc +vtc +vtc +vtc +vtc +uWO +uWO +vtc +vtc +vtc +vtc +uWO +uWO +uWO +uWO +uWO +pit +uWO +uWO +vtc +vtc +auG +vtc +cpy +cpy +cpy +cpy +cpy +rWS +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +knF +pwa +pwa +pxb +nQz +tPf +oKc +hmb +hmb +uiM +uiM +uiM +uiM +eiC +uiM +nUd +tAr +uiM +hmb +hmb +sOM +tPf +vYK +pxb +pwa +pxb +pxb +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(10,1,1) = {" +bMX +cpy +abo +abS +ajM +cpy +abo +oyz +hgz +iTD +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +aVg +cpy +cJA +cpy +viE +cpy +jXp +vtc +vtc +vtc +vtc +vtc +vtc +oip +vtc +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +vtc +vtc +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +auG +cpy +cpy +cpy +rWS +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +pHD +bRt +xlK +aOz +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +sRA +rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +icG +pxb +nQz +tPf +oKc +hmb +hmb +hmb +kTj +uiM +vdJ +vdJ +dho +eiC +vca +kPC +uYJ +uiM +xOt +hmb +hmb +hmb +sOM +tPf +vYK +pxb +pwa +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(11,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +abo +abo +abo +abo +abo +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +hGJ +kFP +cpy +pOK +rQL +cpy +sNk +vtc +vtc +uWO +gxN +hIZ +hIZ +opJ +hSi +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +vtc +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +jrT +cpy +cpy +sRA +sRA +sRA +sRA +sRA +rWS +maH +eUA +pMM +sRA +sRA +tAm +fsN +orF +vcA +pHD +bRt +qUU +fiN +gDD +kor +rWS +uiK +uiK +rWS +ePl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +gBf +pxb +nQz +oKc +hmb +hmb +hmb +kTj +onA +onA +uiM +dho +dho +onA +eiC +vca +ybO +gjG +uiM +xOt +pvJ +pvJ +hmb +hmb +hmb +sOM +vYK +pxb +pwa +pxb +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(12,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +hGJ +mTE +rQL +cpy +cpy +vtc +uWO +uWO +uWO +gEB +uWO +ooe +ooe +lPY +hIZ +hIZ +mAW +hIZ +hIZ +hIZ +hIZ +hIZ +hIZ +hIZ +jXT +jXT +jXT +jXT +jXT +dQr +jXT +jXT +hIZ +ivz +hIZ +hIZ +hSi +vtc +cpy +cpy +rWS +sRA +sRA +sRA +rWS +mHp +lQu +mJo +iCI +shM +mtQ +iTZ +vMT +eqP +des +tAm +fsN +orF +vcA +tOd +uiK +rWS +rWS +sRA +uiK +rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +gBf +nQz +oKc +hmb +rFq +uTd +oyf +tns +fOc +uTd +oyf +tns +fOc +uTd +oyf +tns +fOc +uTd +oyf +uLz +fOc +uTd +oyf +tns +rFq +hmb +sOM +vYK +pxb +pwa +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(13,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +auG +vtc +uWO +uWO +uWO +gEB +uWO +gOJ +cpy +lQS +uWO +uWO +mwp +uWO +uWO +uWO +dHR +dJJ +eXV +uWO +gcY +uWO +uWO +vtc +vtc +auG +auG +vtc +vtc +vtc +vtc +vtc +lMH +vtc +cpy +cpy +rWS +rWS +sRA +sRA +gBK +ouC +dyq +veK +mcY +sqc +fbi +biJ +pcX +biJ +jBh +iTZ +vMT +eqP +iTZ +rGe +sRA +sRA +rWS +sRA +kor +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +pwa +eub +pdx +oba +nFj +pRg +nFj +nFj +nFj +sYH +sYH +sYH +nFj +nFj +pRg +nFj +nFj +sYH +sYH +sYH +sYH +sYH +nFj +pRg +nFj +jWc +pdx +wdY +pxb +pwa +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(14,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +auG +vtc +uWO +uWO +uWO +gEB +uWO +uWO +cpy +uWO +mgJ +mwp +uWO +uWO +aRH +vPk +vPk +vPk +vPk +vPk +gfL +uWO +uWO +uWO +vtc +vtc +vtc +dXa +auG +vtc +vtc +vtc +lMH +jrT +vtc +cpy +cpy +cpy +bjS +gvD +cqW +eql +lXB +aXD +aXD +jLG +aXD +qrQ +aXD +jwN +uBW +tNg +cPB +mzf +pcI +eJX +uiK +uiK +sRA +sRA +sRA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tFx +tFx +tFx +tFx +ppx +pwa +vqE +hmb +tuY +nFj +nFj +nFj +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +sYH +gnf +hmb +wes +pxb +pwa +pxb +pxb +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(15,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +saC +saC +saC +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +vtc +uWO +uWO +uWO +gEB +uWO +uWO +oip +uWO +uWO +uWO +uWO +aRH +cKF +bIJ +bIJ +bIJ +bIJ +bIJ +dek +bsz +uWO +cJy +uWO +uWO +vtc +jus +eXO +emm +vtc +vtc +lMH +vtc +uWO +cpy +cpy +cpy +dyc +bYn +eUG +enL +sqw +ejs +apJ +lmq +fKN +elf +pfg +fwU +lms +shM +xIY +shM +jDg +kor +sRA +sRA +sRA +sRA +rWS +ePl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tFx +tFx +nXx +rCe +pke +phe +pxb +pQW +hmb +qXd +nFj +nFj +nFj +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +sYH +vTO +hmb +wiY +pxb +pwa +pwa +pxb +cpy +cpy +cpy +cpy +cpy +eYM +eYM +eYM +eYM +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(16,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +oVw +oVw +oVw +lrb +oVw +okQ +okQ +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +vtc +vtc +vtc +uWO +uWO +gEB +idH +uWO +oip +uWO +uWO +uWO +uWO +aTA +bIJ +bIJ +cnC +tup +xrk +bIJ +bIJ +oaY +oaY +oaY +oaY +hQU +iOi +jCb +fTi +ksf +kPO +jYu +kTC +oaY +oaY +oaY +cpy +cpy +ead +bDb +jZV +rpn +sPN +noN +aXD +aXD +ask +aXD +jLG +onm +unr +aqt +kZm +qdr +rbT +bfR +sRA +sRA +sRA +rYp +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +ien +ien +kjp +kjp +kjp +kjp +ien +ien +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tFx +iEP +gSN +ign +tFx +phe +pxb +pQW +hmb +qoP +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +orU +hmb +wiY +pxb +pwa +pwa +pxb +cpy +cpy +cpy +cpy +eYM +eYM +cLN +cLN +eYM +eYM +eYM +eYM +cpy +cpy +cpy +cpy +cpy +bMX +"} +(17,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +tps +sxC +sxC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +auG +vtc +vtc +uWO +uWO +gEB +uWO +ttf +cpy +cpy +uWO +uWO +uWO +aTA +bIJ +dnH +dHO +dHO +dHO +hhH +gVd +hoq +hKG +uWO +uWO +ieW +iOY +jCc +gjV +iJJ +kzl +llX +lMH +vtc +vtc +vtc +vtc +cpy +cpy +rWS +rWS +ndq +heN +pOQ +mge +lNv +lNv +npY +upY +npY +lzC +rZX +lFI +wVm +rZX +pzZ +uiK +uiK +gxe +xto +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +qfW +umf +vXc +vXc +yiM +yiM +yiM +ien +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tFx +eYx +cVp +oQa +hkR +phe +pxb +pQW +hmb +qXm +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +dMY +hmb +wiY +pxb +pwa +pwa +pxb +cpy +cpy +cpy +eYM +eYM +eYM +wfP +wfP +wfP +eYM +sRM +eYM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(18,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +tps +sxC +sxC +ekh +ekh +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cKG +auG +vtc +vtc +gEB +uWO +xzq +cpy +cpy +cpy +uWO +uWO +cpy +bIJ +jZJ +eaE +eaE +eaE +nhI +gXE +htu +uWO +uWO +uWO +iff +iTS +iTS +iTS +kBv +jbI +lnL +lMH +ibu +vtc +vtc +vtc +cpy +cpy +rWS +sRA +ndq +jZV +kvw +sIj +shM +ljZ +rZX +lFI +wVm +elW +pHD +nXw +vkV +aOz +pDw +uiK +sRA +odi +ien +ien +hlC +fqz +ien +yeV +xIe +ien +sgs +sEr +ien +ldu +yhK +aJV +iSf +iSf +yhK +yhK +vKR +ien +wEP +hJZ +lZc +czW +sjY +ien +lSg +jfy +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +ylo +wkm +ylo +ylo +ylo +ylo +ylo +ylo +rMF +qfW +vXc +vXc +vXc +vXc +vXc +vXc +ien +ien +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +cpy +cpy +ien +tFx +qMv +oUm +xRU +hkR +phe +pxb +pQW +hmb +tuY +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +ldJ +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +gnf +hmb +wiY +pxb +pwa +pwa +pxb +cpy +cpy +eYM +eYM +eIP +cAN +wfP +wfP +wfP +cAN +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(19,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +saC +saC +sxC +utg +sxC +sxC +ekh +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +cpy +cpy +cpy +cpy +lqb +tta +tta +tta +mPW +tta +nNL +xpg +cpy +cpy +cpy +cpy +cpy +bIJ +nhI +eaE +eaE +eaE +pGp +gVd +hoq +hKG +uWO +uWO +uWO +cPi +uWO +uWO +vtc +vtc +vtc +mnr +jXT +jXT +jXT +noL +cpy +cpy +cpy +sRA +sRA +tXY +pEn +jyX +sRA +sRA +pHD +nXw +jQL +aOz +tAm +hhR +tHG +mwF +lTa +hPM +uiK +oow +ien +sgs +xLl +iAS +dkB +dkB +dYA +rum +hlW +sqW +tbP +ldM +clY +rIh +lIR +dTJ +dTJ +akV +eUt +clY +vJO +hJZ +hJZ +woA +hJZ +hJZ +hJZ +laK +ylo +sDR +svQ +cEr +kbR +fAu +cEr +lqG +ntI +ylo +ylo +wkm +kDn +eax +mJK +jIE +pHo +ylo +rMF +qfW +vXc +vXc +vXc +vXc +vXc +vXc +vXc +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +tFx +tWG +tWG +tWG +tFx +phe +pxb +pQW +hmb +qXd +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +vTO +hmb +wiY +pxb +pwa +pwa +pxb +cpy +eYM +eYM +jJF +wfP +eYM +wfP +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(20,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +saC +saC +sxC +sxC +sxC +sxC +sxC +ekh +ekh +saC +ekh +ekh +saC +saC +clB +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +lqb +lqb +lqb +lqb +gYM +lqb +lqb +xpg +cpy +cpy +cpy +cpy +cpy +bIJ +bIJ +dHO +dHO +dHO +bIJ +gXE +htu +uWO +uWO +cPi +uWO +uWO +uWO +ibu +vtc +vtc +uWO +uWO +uWO +vtc +vtc +lMH +vtc +wms +cpy +sRA +sRA +sRA +sRA +sRA +sRA +sRA +tAm +bsq +tHG +vcA +cpy +cpy +cpy +rWS +kuZ +cbv +uRD +ien +ien +ien +xWB +aQY +prM +kvc +kBz +nhz +wQN +sEr +ucI +clY +sjY +rIh +rOi +swt +rdM +xDC +eUt +hJZ +clY +fPH +gRs +hJZ +hJZ +hJZ +iii +gKO +ylo +jnZ +dqu +cEr +rWA +dqu +cEr +cRO +pQZ +dsG +ylo +iKA +ylo +kKd +qWa +kSt +nvw +ylo +rMF +qfW +vXc +vXc +vXc +vXc +vXc +vXc +vXc +umf +umf +ien +vGk +vSM +ien +tzz +jGK +ien +pxk +xSD +ien +qJy +aRN +ien +trC +tqp +tqp +fnA +fNZ +phe +pxb +pQW +hmb +qoP +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +orU +hmb +wiY +pxb +pwa +xqp +pxb +cpy +eYM +nSp +jJF +wfP +eYM +wfP +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(21,1,1) = {" +bMX +cpy +cpy +cpy +tiQ +tiQ +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +tps +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +tps +sxC +sxC +vCW +clB +saC +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +bzC +kBq +oiW +niU +ljq +bzC +xpg +cpy +cpy +cpy +cpy +cpy +cpy +bIJ +bIJ +pLn +bIJ +bIJ +nru +cjE +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +uWO +uWO +vtc +uWO +uWO +vtc +mnr +jXT +nYM +kVG +bWt +wbt +wbt +wbt +kXe +sRA +sRA +sRA +sRA +sRA +cpy +cpy +cpy +rWS +sRA +sRA +sRA +sRA +sRA +ien +sgs +wQN +rbq +eiZ +eiZ +eiZ +kIj +eiZ +sEr +ucI +clY +sjY +sJf +mZs +mOO +iuv +xEb +tCq +hJZ +hJZ +clY +aTP +hJZ +hJZ +hJZ +buh +ylo +ylo +ngQ +cEr +dqu +rWA +nyU +dqu +jnZ +dqu +dqu +ylo +iKA +ylo +xZD +uGR +cEr +tDa +ylo +ylo +qfW +vXc +vXc +vXc +umf +vXc +vXc +vXc +uJi +psW +mZi +psW +psW +mZi +psW +gon +mZi +phL +psW +kER +eeL +mwO +tZh +ofi +ofi +max +uvX +fNZ +phe +pxb +pQW +hmb +qXm +nFj +nFj +nFj +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +sYH +dMY +hmb +wiY +pxb +xqp +xqp +cpy +cpy +eYM +mDv +wfP +wfP +eYM +jJF +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(22,1,1) = {" +bMX +cpy +cpy +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +tps +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +tps +sxC +sxC +sxC +vCW +clB +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +bzC +oiW +oiW +niU +oiW +bzC +xpg +cKG +rtI +qMj +mJq +cpy +csU +cpy +bQG +bQG +bQG +bQG +cjE +vtc +vtc +vtc +uWO +uWO +uWO +uWO +uWO +uWO +cPi +auG +vtc +vtc +uWO +vtc +vtc +vtc +wnu +nvB +sRA +sRA +sRA +sRA +kXo +sRA +cpy +cpy +sRA +sRA +rFm +cpy +rWS +rWS +sRA +sRA +sRA +sRA +sRA +ien +sgs +eiZ +xGa +xLq +uyN +ciC +qLP +wQN +sEr +ucI +clY +clY +sJf +slD +xPx +kCF +rbV +wRz +wBA +wBA +wBA +yhK +yhK +vKR +sjY +fds +euO +yfu +hgq +cEr +dqu +ppe +vbW +dqu +ppe +cEr +dqu +ylo +wkm +ylo +wqv +dqu +cEr +cgO +yfu +ylo +qfW +vXc +vXc +vXc +umf +umf +vXc +uJi +rMF +nJv +nJv +nJv +nJv +nJv +nJv +nJv +nJv +nJv +nJv +nJv +nJv +fnA +gFH +tZh +ofi +max +uvX +fNZ +phe +pxb +buw +hmb +tuY +nFj +nFj +nFj +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +sYH +nFj +nFj +sYH +gnf +hmb +wjE +pxb +xqp +pwa +cpy +cpy +eYM +sZE +gAr +wfP +eYM +jJF +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(23,1,1) = {" +bMX +cpy +cpy +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +utg +sxC +oDE +jOv +jOv +jOv +yiV +jOv +jOv +jOv +jOv +jOv +jOv +mPb +sxC +sxC +fqH +sxC +sxC +sxC +sxC +sis +saC +saC +saC +tiQ +tiQ +tiQ +bzC +bzC +oiW +oiW +niU +kBq +bzC +xpg +pMT +vox +kln +mJq +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +uWO +uWO +uWO +uWO +vtc +vtc +uWO +uWO +auG +vtc +vtc +uWO +uWO +vtc +vtc +cpy +cpy +sRA +rWS +sRA +sRA +trf +cpy +cpy +cpy +cpy +sRA +nvB +abt +rWS +sRA +sRA +sRA +sRA +sRA +ien +ien +ien +xwO +eiZ +xOD +kvh +rpx +wQN +wQN +sEr +ucI +clY +clY +sJf +vmQ +swt +dpk +hJZ +hJZ +hJZ +nlz +oRU +hJZ +clY +eUt +sjY +fds +euO +cEr +qvY +yfu +yfu +yfu +yfu +yfu +yfu +bZd +yfu +kDn +iKA +ylo +yfu +bZd +yfu +bZd +bZd +euO +qfW +vXc +vXc +vXc +cpy +umf +yiM +wKQ +nJv +xVd +ctn +sDG +nJv +nJv +mDs +mDs +nJv +dYh +dYh +dYh +xVd +nJv +gFH +tZh +ofi +max +ien +ien +ien +pxb +eub +pdx +gvV +nFj +pRg +nFj +nFj +nFj +sYH +sYH +sYH +nFj +nFj +pRg +nFj +nFj +sYH +sYH +sYH +sYH +sYH +nFj +pRg +nFj +htk +pdx +wdY +pxb +pwa +pxb +pxb +cpy +eYM +tPw +gAr +wfP +eYM +jJF +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(24,1,1) = {" +bMX +cpy +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sis +uPc +uPc +kcb +kcb +nVr +nVr +uPc +uPc +kmd +saC +cWa +sxC +sxC +tps +sxC +sxC +sxC +sxC +vCW +clB +fop +saC +tiQ +tiQ +bzC +bzC +bzC +oiW +ljq +niU +oiW +bzC +xpg +pPt +cQz +kln +mJq +uWO +vtc +vtc +vtc +uWO +uWO +uWO +uWO +vtc +uWO +uWO +uWO +uWO +uWO +vtc +vtc +vtc +uWO +uWO +vtc +vtc +auG +uWO +vtc +vtc +sRA +cpy +cpy +sRA +kBT +rWS +rVh +sRA +cpy +cpy +cpy +cpy +sRA +sRA +sRA +sRA +uiK +sRA +sRA +sRA +rWS +ien +rnZ +iEX +rnZ +aJB +rnZ +rCf +rnZ +boA +cEv +kMQ +sjY +clY +sJf +vzy +hwF +ePp +llU +mLV +hJZ +nlV +nzZ +hJZ +hJZ +iPu +wBA +cHZ +cXc +icE +djm +pCn +qJK +icE +qJK +qJK +qJK +cQB +bZd +ylo +iKA +kDn +yfu +syF +bZd +bZd +yfu +euO +qfW +vXc +vXc +cpy +cpy +umf +yiM +wKQ +nJv +nJv +ctn +ctn +eVu +ttb +wdj +frj +nJv +bzL +qmA +qmA +dYh +nJv +gFH +ofi +ofi +max +uvX +fNZ +phe +pxb +rFx +skd +hmb +ptW +vJj +jIk +aGS +dhP +vJj +jIk +aGS +dhP +vJj +jIk +aGS +dhP +vJj +jIk +aGS +dhP +vJj +jIk +aGS +ptW +hmb +gPv +gVn +pwa +pwa +pxb +pxb +cpy +eYM +eYM +hWb +wfP +eYM +wfP +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +cpy +bMX +"} +(25,1,1) = {" +bMX +cpy +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sis +uPc +tKo +wBG +tiQ +nVr +nVr +tKo +vde +tiQ +saC +saC +sxC +sxC +ekh +ekh +sxC +sxC +sxC +sxC +vCW +fop +fop +tiQ +tiQ +bzC +bzC +bzC +nvd +bgc +mjs +nvd +bzC +xpg +pPt +sDS +kln +mJq +uWO +uWO +vtc +vtc +uxd +uWO +aNw +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +uWO +uWO +uWO +vtc +auG +uWO +uWO +vtc +sRA +cpy +cpy +sRA +uyE +rWS +tVt +sRA +sRA +cpy +cpy +rWS +sRA +uiK +uiK +uiK +uiK +nCt +sRA +sRA +rWS +ien +jzb +igr +jzb +jzb +jzb +gEj +jzb +jzb +jzb +muY +sjY +hJZ +wqa +orP +gAO +edQ +sFL +mLW +hJZ +hJZ +hJZ +hJZ +hJZ +slO +hJZ +fds +euO +yfu +yfu +yfu +bZd +bZd +yfu +yfu +yfu +bDr +bZd +ylo +wkm +kDn +cOt +bZd +yfu +bZd +yfu +euO +qfW +vXc +vXc +cpy +vXc +vXc +yiM +dCZ +nJv +fGW +rez +lMC +udM +nEY +sQD +vpR +nJv +cNO +qmA +mdp +dYh +nJv +roI +ofi +ofi +max +uvX +fNZ +phe +pxb +pxb +rFx +skd +hmb +hmb +hmb +azk +ued +kiq +uiM +kTj +vca +kTj +eiC +loR +loR +wqn +uiM +mwm +azk +azk +hmb +hmb +hmb +gPv +gVn +pxb +pwa +pwa +pwa +pxb +cpy +eYM +htf +wfP +wfP +eYM +wfP +wfP +wfP +eYM +sRM +hTe +eYM +eYM +cpy +cpy +cpy +bMX +"} +(26,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tps +tps +pyF +tiQ +tiQ +tiQ +tiQ +nTt +nTt +tiQ +tiQ +tiQ +tiQ +saC +saC +ekh +ekh +ekh +sxC +sxC +sxC +sxC +sxC +sxC +fop +fop +xmT +kdD +kdD +kdD +kdD +kdD +raE +kdD +bzC +xpg +xpg +cQz +kln +mJq +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +uWO +vtc +sRA +uiK +uiK +sRA +vOe +sRA +bKq +goY +rsF +rWS +rWS +sRA +uiK +uiK +uiK +uiK +uiK +cpy +sRA +sRA +ien +ien +ien +pTo +pTo +pTo +pTo +tLV +pTo +pTo +pTo +pTo +pTo +wqa +wqa +wqa +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +ljn +lOC +ljn +ljn +ylo +dqu +ljN +ghC +aZK +ghC +ghC +ghC +yfu +bDr +yfu +lby +wkm +ylo +hjE +aZK +ghC +ari +kWX +ylo +qfW +vXc +vXc +vXc +vXc +yiM +yiM +pAH +nJv +wos +vIy +vIy +oTp +knT +sEa +ucq +nJv +rZg +mwC +kIs +dYh +nJv +roI +ofi +ofi +max +ien +ien +ien +pwa +pxb +pxb +rFx +udi +skd +hmb +hmb +hmb +kiq +qkw +kTj +onA +kTj +eiC +loR +loR +wqn +uiM +azk +hmb +hmb +hmb +gPv +udi +gVn +pxb +pxb +pwa +pwa +pwa +cpy +cpy +eYM +eYM +wfP +wfP +eYM +wfP +wfP +wfP +eYM +sRM +hTe +hTe +eYM +cpy +cpy +cpy +bMX +"} +(27,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sis +uPc +dUS +sWS +tiQ +nVr +nVr +tJk +sWS +tiQ +saC +saC +saC +saC +ekh +ekh +ekh +sxC +sxC +sxC +sxC +sxC +fop +fop +xmT +vnR +jRZ +hGV +kBc +rLD +raE +bzC +bzC +bzC +xpg +cQz +kln +mJq +uWO +uWO +xzq +tta +tta +tta +tta +tta +tta +tta +tta +tta +uWO +iTW +cPi +uWO +tta +tta +tta +uWO +uWO +vtc +vtc +vtc +uWO +oee +sRA +tTr +pUR +uiK +uiK +uiK +uiK +ruH +goY +goY +goY +goY +goY +goY +goY +goY +rsF +sRA +sRA +sRA +clY +sjY +clY +clY +sjY +sjY +eUt +clY +clY +clY +hJZ +clY +clY +wqa +hJZ +hJZ +mAg +uSZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +slO +hJZ +buh +ylo +ylo +cks +jqT +cRO +cks +cRO +cRO +dqu +sIS +yfu +kDn +iKA +ylo +ylo +bnN +cBl +vkJ +ylo +ylo +qfW +vXc +vXc +vXc +yiM +yiM +yiM +wKQ +nJv +nJv +lHu +pwT +fSv +wbj +rIn +tKT +xRS +frj +vIy +pCT +jYy +gPX +gFH +ofi +tZh +max +uvX +fNZ +phe +pwa +pwa +pxb +pxb +pxb +rFx +udi +skd +hmb +hmb +uiM +uiM +uiM +uiM +eiC +uiM +uiM +uiM +uiM +hmb +hmb +gPv +udi +gVn +pxb +pxb +pxb +pxb +pwa +pwa +pwa +cpy +cpy +eYM +ifG +wfP +lgR +eYM +wfP +wfP +uQO +eYM +sRM +hTe +hTe +eYM +cpy +cpy +cpy +bMX +"} +(28,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +oeS +uPc +uPc +uPc +kmd +eCW +nVr +uPc +uPc +kmd +uPc +saC +saC +saC +saC +saC +xYv +jOv +jOv +jOv +jOv +fop +fop +fop +xmT +rAi +kdD +gsF +wYm +vaN +raE +kdD +bzC +xpg +xpg +nmG +kln +mJq +aNw +uWO +rKB +bIJ +bIJ +tCU +tCU +ogr +eyD +ogr +tCU +tCU +uWO +uWO +uWO +uWO +ilK +bIJ +bIJ +uWO +uWO +vtc +vtc +vtc +uWO +sRA +sRA +uiK +uiK +hKE +hKE +jsM +uiK +hRu +uiK +uiK +nCt +uiK +uiK +tTr +hKE +hKE +viA +sRA +sRA +sRA +sjY +sjY +clY +clY +clY +clY +eUt +clY +clY +sjY +hJZ +hJZ +clY +oaA +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +slO +hJZ +hJP +oOS +ylo +ylo +ylo +ylo +ylo +ylo +ylo +mNh +hpE +mNh +ylo +wkm +ylo +ylo +ylo +ylo +ylo +ylo +rMF +fbL +vXc +vXc +yiM +yiM +yiM +yiM +dbv +tAy +ceV +qWf +icy +wdj +wdj +wdj +bjm +axZ +frj +vIy +eXU +lKu +gPX +gFH +ofi +max +max +uvX +fNZ +phe +pwa +pwa +pwa +pxb +pxb +pxb +pxb +rFx +skd +hmb +hmb +hmb +gZD +mwm +eiC +wqn +wqn +hmb +hmb +hmb +gPv +gVn +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +pxb +cpy +cpy +eYM +eYM +jXD +eYM +eYM +hWb +wfP +wfP +eYM +rwt +qxk +hTe +eYM +cpy +cpy +cpy +bMX +"} +(29,1,1) = {" +bMX +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sis +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +pVV +sxC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +fop +fop +fop +xmT +fop +kdD +gsF +wYm +dKH +kOE +eFq +bzC +xpg +pPC +cQz +kln +mJq +uWO +uWO +rKB +bIJ +eaE +eaE +eaE +eaE +eaE +eaE +eaE +eaE +ilK +uWO +aNw +iTW +uWO +uWO +bIJ +uWO +uWO +uWO +vtc +vtc +uWO +uiK +sRA +uiK +uiK +uiK +uiK +uiK +uiK +hRu +uiK +uiK +uiK +uiK +orE +uiK +uiK +uiK +hRu +uiK +sRA +sRA +sjY +clY +clY +clY +clY +clY +eUt +hJZ +sjY +hJZ +hJZ +hJZ +clY +oaA +hJZ +hJZ +hJZ +clY +clY +clY +mwX +mwX +mwX +hJZ +slO +hJZ +hJZ +hJP +jzb +sJf +per +gBO +gBO +gBO +rkC +gBO +lZx +gBO +gBO +bLo +rkC +gBO +gBO +gBO +gBO +gBO +fbL +vXc +yiM +yiM +yiM +yiM +yiM +yiM +wKQ +gPX +ozy +ukp +xdD +oPc +nEY +sQD +lfq +nJv +mHm +rbc +vIy +bxM +gPX +gFH +max +max +max +uvX +fNZ +tfk +pIA +pIA +pIA +pIA +wGk +pxb +pxb +pxb +rFx +udi +skd +pdx +hmb +hmb +eiC +hmb +hmb +pdx +gPv +udi +gVn +pxb +pxb +pxb +pxb +pxb +pxb +pwa +xqp +pwa +pxb +cpy +eYM +eYM +wfP +wfP +wfP +eYM +wfP +wfP +jJF +eYM +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(30,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sis +uPc +nVr +nVr +nVr +fkJ +fkJ +nVr +nVr +nVr +uPc +sxC +nVr +kFH +saC +saC +saC +saC +saC +sxC +fop +fop +fop +fop +chm +fop +kdD +gsF +wYm +wWO +kdD +kdD +bzC +xpg +xpg +sDS +kln +mJq +uWO +uWO +rKB +lwC +eaE +cnC +cnC +uWO +cnC +cnC +cnC +nla +cnC +cnC +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +vtc +sRA +sRA +rWS +uiK +uiK +uiK +uiK +uiK +hRu +rGi +uiK +uiK +uiK +uiK +uiK +uiK +sRA +rtr +goY +wbt +wov +wov +wov +yhK +yhK +qKq +yhK +lyg +wBA +wBA +wBA +wBA +vEf +wBA +gpx +wBA +wBA +yhK +iSf +yhK +xDt +wBA +wBA +wBA +vFH +lyg +wBA +vEf +wBA +wBA +wIg +tBC +rwE +rwE +rwE +rwE +rwE +hWI +yiM +bLo +bLo +bLo +vXc +vXc +vXc +umf +umf +vXc +yiM +yiM +yiM +yiM +yiM +yiM +yiM +wKQ +nJv +xVd +fjW +hVz +fBw +lwf +ygG +jWb +nJv +bOu +jAh +nqf +xVd +nJv +gFH +max +max +max +uvX +tFx +hkR +tFx +tFx +hkR +tFx +phe +pxb +pxb +pxb +pxb +pxb +rFx +udi +gwD +hmb +hmb +hmb +oxf +udi +gVn +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +xqp +xqp +cpy +cpy +eYM +mKJ +wfP +wfP +wfP +eYM +wfP +wfP +jJF +lAN +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(31,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sis +uPc +uPc +uPc +uPc +fkJ +fkJ +uPc +uPc +uPc +uPc +sxC +nVr +eCM +eCM +fkJ +saC +saC +saC +saC +saC +fop +fop +fop +chm +chm +oQM +gsF +wYm +dKH +kdD +bzC +bzC +bzC +xpg +cQz +kln +mJq +uWO +uWO +rKB +lwC +enS +cnC +dmG +dQs +gFp +eaE +eaE +eaE +eaE +cnC +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +vtc +kBT +kBD +uiK +uiK +sRA +uiK +uiK +uiK +hRu +uiK +uiK +uiK +uiK +keb +uiK +sRA +kor +vae +uiK +uiK +sRA +clY +clY +clY +xGc +lvb +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +slO +clY +lZA +clY +hJZ +gVv +xGc +xVz +xVz +gsS +hJZ +iii +ixi +ixi +ixi +nHG +ixi +ixi +sJf +kFq +pgP +yiM +yiM +yiM +yiM +yiM +yiM +yiM +bLo +vXc +vXc +vXc +vXc +vXc +vXc +vXc +yiM +yiM +yiM +yiM +yiM +yiM +yiM +wKQ +gbB +nJv +gPX +cmo +tAy +nJv +inZ +qtv +nJv +gPX +gPX +gPX +nJv +kmq +xjP +max +max +ofi +uvX +vkW +mti +kuy +mmV +oQa +hkR +phe +pxb +pxb +pxb +pwa +pwa +pxb +pxb +bvw +vUr +vUr +vUr +wGB +pxb +pxb +pxb +pxb +pwa +pwa +pxb +pwa +pwa +pwa +pxb +xqp +xqp +cpy +cpy +eYM +mKJ +wfP +wfP +wfP +eYM +wfP +wfP +wfP +jJF +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(32,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sis +uPc +nVr +nVr +nVr +fkJ +fkJ +nVr +nVr +nVr +uPc +sxC +nVr +fkJ +eCM +fkJ +fkJ +saC +saC +saC +saC +saC +fop +chm +chm +chm +saC +aWA +uQI +pLj +paF +kme +bzC +xpg +xpg +cQz +eYW +mJq +uWO +uWO +rKB +lwC +eaE +esV +doj +eaE +gSw +eaE +nTO +gge +eaE +cnC +ilK +uWO +uWO +uWO +uWO +mJq +uWO +vtc +uWO +uWO +uWO +sFm +pNM +pNM +rSL +sRA +sRA +uiK +uiK +hRu +uiK +uiK +uiK +uiK +nCt +sRA +asn +sRA +iWo +uiK +uiK +uiK +wKj +clY +clY +hJZ +slO +xVz +xVz +kfq +hJZ +hJZ +hJZ +eUt +clY +oaA +clY +hJZ +hJZ +hJZ +hJZ +clY +clY +iii +gKO +nLm +nLm +nLm +slx +wqU +nLm +nLm +nLm +rMF +pgP +yiM +yiM +yiM +yiM +yiM +yiM +bLo +vXc +vXc +vXc +vXc +vXc +vXc +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +oCI +gBO +gBO +gBO +gBO +iYe +jjb +rGs +eyL +gBO +mZi +tqp +tqp +xjP +max +max +max +ofi +uvX +vkW +ign +jcb +jcb +gAu +hkR +phe +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +xqp +cpy +cpy +eYM +mbh +wfP +wfP +wfP +eYM +lgR +wfP +wfP +jJF +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(33,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sis +fkJ +fkJ +fkJ +fkJ +pVV +fkJ +qGM +fkJ +cAr +uzo +mVh +nVr +fkJ +fkJ +cAr +fkJ +nVr +sxC +saC +saC +saC +chm +chm +chm +tiQ +saC +cSg +jsD +tCh +kOQ +kme +bzC +xpg +pPt +sDS +qMj +mCb +uWO +uWO +rKB +lwC +eaE +qBV +fsQ +fej +eaE +eaE +gbH +hPd +eaE +cnC +eaE +uWO +uWO +iTW +uWO +mJq +vtc +vtc +vtc +uWO +uWO +kSR +lBE +lBE +tfG +rWS +sRA +sRA +uiK +hRu +uiK +uiK +orE +sRA +sRA +sRA +uiK +uiK +viN +rGi +uiK +uiK +hJZ +clY +hJZ +hJZ +slO +hJZ +hJZ +hJZ +hJZ +hJZ +wKj +eUt +sjY +oaA +clY +clY +clY +clY +clY +clY +clY +fds +nLm +nLm +oKV +qhi +oYh +tDN +aJW +gUK +nLm +nLm +qfW +yiM +yiM +yiM +yiM +yiM +bLo +bLo +bLo +vXc +vXc +vXc +vXc +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +dwd +qQi +qQi +puY +vXc +vXc +wYa +vXc +vXc +vXc +mZi +max +max +max +max +max +max +ofi +uvX +eTi +ign +imC +imC +gAu +pke +phe +pxb +pwa +pwa +pwa +xqp +pwa +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pwa +pwa +pwa +pwa +pwa +pwa +pxb +pxb +pxb +pxb +pxb +cpy +cpy +eYM +yie +wfP +wfP +jJF +eYM +lAN +wfP +wfP +eBN +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(34,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +utg +sxC +sis +uPc +nVr +nVr +nVr +pWU +fkJ +nVr +nVr +nVr +uPc +dLw +nVr +fkJ +fkJ +fkJ +fkJ +nVr +sxC +sxC +saC +saC +saC +chm +saC +tiQ +saC +oJS +oJS +tCh +rfE +kme +bzC +xpg +xpg +vox +qMj +mCb +uWO +uWO +rKB +ppv +eaE +xpn +gge +jsQ +uWO +cWf +gwt +eaE +eaE +cnC +eaE +uWO +uWO +uWO +gcY +jyI +uWO +vtc +vtc +uWO +uWO +kTn +fiB +cwN +cJm +rWS +rWS +kQW +wbt +rvh +uiK +uiK +rWS +asn +sRA +uiK +uiK +asn +uiK +uiK +sRA +ien +ien +ien +hJZ +hJZ +slO +hJZ +hJZ +hJZ +iii +ixi +ixi +nHG +ixi +oaA +bgL +sjY +clY +clY +clY +clY +sjY +fds +nLm +kso +jfZ +jfZ +sWt +fgk +tHJ +jfZ +jkP +nLm +qfW +yiM +yiM +yiM +yiM +yiM +uJi +bLo +psW +psW +psW +psW +pgP +vXc +vXc +yiM +yiM +yiM +yiM +pWR +rwE +rwE +rwE +rwE +rwE +rwE +rwE +rXb +rXb +pnE +umf +umf +vXc +mZi +max +max +max +max +max +ofi +tZh +uvX +vkW +pow +jcb +mYv +wER +hkR +phe +pwa +pwa +pwa +pxb +xqp +xqp +pwa +pwa +xqp +xqp +xqp +pwa +pwa +pwa +pwa +pwa +pwa +mpu +pIA +pIA +pIA +pIA +pIA +pIA +cpy +cpy +cpy +eYM +dlo +wfP +jJF +jJF +eYM +lAN +jJF +wfP +eBN +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(35,1,1) = {" +bMX +tiQ +saC +saC +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sis +uPc +uPc +uPc +uPc +tWS +fkJ +uPc +uPc +uPc +uPc +dLw +nVr +nVr +nVr +nVr +nVr +nVr +sxC +sxC +saC +saC +saC +saC +saC +tiQ +tiQ +oJS +oJS +oJS +oJS +bzC +bzC +bzC +xpg +vox +bkE +mCb +uWO +oTX +rKB +ppv +eaE +cnC +doF +gFp +uWO +fkB +uWO +eaE +eaE +cnC +eaE +eaE +uWO +uWO +iod +uWO +uWO +uWO +vtc +uWO +uWO +kUJ +mDw +cqe +ien +sRA +sRA +kXo +sRA +rWS +asn +ien +asn +asn +ien +asn +uiK +ien +uiK +uiK +ien +ien +ien +hJZ +hJZ +hJZ +slO +hJZ +hJZ +iii +oOS +nLm +rLa +tAt +rLa +nLm +oOS +bgL +sjY +clY +clY +sjY +sjY +fds +wFS +hMs +uOs +tUM +eAm +uOs +tUM +uOs +hhz +wFS +qfW +yiM +yiM +yiM +yiM +uJi +gbB +nLm +rLa +rLa +rLa +nLm +rMF +pgP +vXc +vXc +yiM +yiM +yiM +wsY +yiM +yiM +yiM +yiM +yiM +yiM +vXc +vXc +uJi +psW +psW +psW +psW +mZi +mwO +max +max +max +max +ofi +tZh +uvX +vkW +kko +gAu +nJs +xLP +hkR +phe +pwa +pwa +pxb +cpy +pxb +pxb +pxb +pwa +cnX +sxk +jmk +riM +vVR +sxk +sfn +pwa +pwa +nip +tFx +tFx +vcl +vcl +vcl +tFx +tFx +cpy +cpy +eYM +lAs +wfP +jJF +eYM +eYM +eYM +kvW +wfP +wfP +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(36,1,1) = {" +bMX +tiQ +tiQ +saC +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +oeS +uPc +nVr +nVr +nVr +fkJ +fkJ +nVr +nVr +nVr +uPc +dLw +sxC +wLa +sxC +sxC +sxC +sxC +sxC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +oJS +oJS +oJS +oJS +bzC +bzC +xpg +xpg +rfM +bkE +ghM +uWO +uWO +rKB +ppv +eaE +cnC +doF +eaE +gSw +gFp +eaE +gIv +eaE +nla +eaE +eaE +uWO +uWO +ioA +uWO +uWO +uWO +uWO +uWO +uWO +ien +ien +ien +ien +ien +clY +eUt +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +ien +hJZ +hJZ +hJZ +hJZ +slO +hJZ +iii +oOS +nLm +nLm +gmA +qxc +ucu +nLm +nLm +oOS +ixi +ixi +ixi +ixi +ixi +oOS +uNi +hMs +oPu +uOs +mie +qcb +fjP +uOs +iNU +uNi +rMF +psW +psW +psW +psW +rMF +nLm +nLm +aiY +vLk +axy +nLm +nLm +rVa +pgP +vXc +vXc +vXc +yiM +wsY +yiM +yiM +yiM +yiM +yiM +vXc +vXc +uJi +rMF +mBF +rMF +mBF +rMF +mBF +fnA +mwO +max +max +max +tZh +clg +fnA +tFx +hkR +sBN +hkR +tFx +tFx +phe +pxb +pxb +cpy +cpy +pxb +pxb +pxb +cnX +jNj +tFx +tFx +sBN +tFx +tFx +pxx +pIA +pIA +tfk +tFx +nFi +xSW +imC +xSW +iFg +tFx +eYM +eYM +eYM +eYM +jXD +eYM +eYM +eYM +eYM +eYM +jXD +eYM +eYM +sRM +hTe +eYM +cpy +cpy +cpy +bMX +"} +(37,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sis +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +fkJ +pVV +fkJ +hgb +oNL +oVw +oVw +oVw +oVw +oVw +oVw +eLV +saC +saC +saC +saC +saC +tiQ +rAi +tiQ +rfE +oJS +oJS +oJS +bzC +bzC +bzC +xpg +vox +bkE +mJq +uWO +uWO +rKB +lwC +enS +cnC +dqr +eaE +egV +eaE +eaE +gJm +eaE +cnC +eaE +eaE +aNw +kQS +uWO +uWO +uWO +uWO +uWO +ien +ien +ien +sjY +hJZ +ien +clY +clY +rnG +kYm +hJZ +hJZ +ien +hJZ +hJZ +ien +hJZ +hJZ +ien +clY +clY +ien +hJZ +hJZ +hJZ +hJZ +hJZ +slO +iii +gKO +nLm +nLm +aht +hMs +lnQ +hMs +afz +nLm +nwj +uUU +uUU +nwj +uUU +uUU +nwj +nLm +kpt +bOf +abj +wEO +xoe +kek +qnz +hDk +nLm +nwj +uUU +uUU +uUU +uUU +nwj +nLm +azD +kzz +fms +ezF +ezF +nLm +nLm +rMF +pgP +vXc +vXc +umf +xTV +umf +yiM +yiM +yiM +vXc +vXc +uJi +gbB +mBF +mBF +mBF +mBF +mBF +mBF +mBF +fnA +mwO +max +max +tZh +uvX +tFx +tFx +aKG +gAu +cLg +tFx +tFx +phe +pxb +pxb +pxb +pxb +pxb +pxb +pwa +qyl +tFx +tFx +ocF +xSW +fkw +tFx +tFx +cpy +cpy +tfk +tFx +hnS +pVe +imC +xSW +jvx +tFx +eYM +uvl +yie +wfP +jJF +jJF +eYM +eYM +eYM +sfL +wfP +jJF +boW +sRM +eYM +eYM +cpy +cpy +cpy +bMX +"} +(38,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sis +uPc +uPc +uPc +kmd +nVr +nVr +uPc +uPc +kmd +uPc +gRL +sxC +sxC +sxC +sxC +sxC +sxC +eLV +eLV +saC +saC +saC +saC +tiQ +sYu +fCc +oKL +hGV +oJS +oJS +oJS +bzC +xpg +xpg +cQz +qMj +mJq +uWO +uWO +rKB +lwC +eaE +wbM +dBC +dTv +eaE +jsQ +eaE +heB +eaE +dHO +dHO +dHO +dHO +uWO +uWO +uWO +uWO +uWO +uWO +uWO +ien +hmz +nfU +hJZ +hEx +clY +clY +clY +slO +hJZ +hJZ +hJZ +uAb +lsG +lsG +lsG +qDl +clY +vjG +rFL +ixi +ixi +ixi +ixi +bgL +xGk +slO +fds +nLm +nLm +tQo +hMs +uOs +eAm +uOs +iFK +nLm +dvC +mxK +arv +oBk +bZW +bZW +oWF +nLm +nLm +nLm +rLa +slx +bqW +rLa +nLm +nLm +nLm +oOZ +imr +pZF +gms +yhn +icp +nLm +kSE +lUi +fjP +guB +cxJ +bCY +nLm +nLm +qfW +vXc +vXc +vXc +wYa +vXc +vXc +yiM +vXc +umf +uJi +rMF +mBF +mBF +nQN +qfh +ddU +gnI +sqR +mBF +mBF +kmq +mwO +max +max +uvX +vkW +lIA +ltE +mYv +mYv +gAu +hkR +phe +pxb +pxb +pxb +pxb +pxb +pxb +pwa +qyl +tFx +ooa +gAu +imC +ePE +vwG +tFx +cpy +cpy +cpy +tFx +ign +xSW +xSW +xSW +ign +tFx +qWo +eUR +wfP +wfP +wfP +jJF +lAN +eYM +rrC +jJF +wfP +wfP +boW +sRM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(39,1,1) = {" +bMX +cpy +tiQ +saC +saC +saC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sxC +sis +uPc +tKo +vde +tiQ +nVr +nVr +tKo +vde +tiQ +eTF +gRL +sxC +sxC +sxC +eLV +sxC +eLV +eLV +eLV +eLV +saC +saC +saC +tiQ +pfB +kqW +meE +map +qVm +kOU +oJS +bzC +xpg +pPC +sDS +qMj +mJq +uWO +uWO +rKB +ppv +eaE +cnC +eaE +eaE +bex +eaE +gFp +eaE +hZZ +wtc +eaE +eaE +eaE +uWO +uWO +ilK +vtc +uWO +uWO +uWO +ien +hmM +clY +hJZ +hEx +clY +clY +clY +slO +hJZ +clY +hJZ +rmX +xkO +xkO +xkO +lUh +clY +clY +lRR +cuQ +kbh +xZX +wHd +ucI +tPv +slO +fds +nLm +tQo +hMs +uOs +mQy +mMv +uOs +hMs +rLa +gZt +bkl +vUf +qfu +qfu +vUf +ito +jJW +rLa +pfl +sjo +tZw +mEy +hhz +hrK +rLa +pGb +kbE +ruS +rYE +ruS +ruS +pGo +rLa +otK +trj +tUM +uOs +fjP +hMs +fYX +nLm +qfW +vXc +vXc +vXc +wYa +cpy +vXc +vXc +vXc +vXc +wKQ +mBF +mBF +jvq +wze +hrY +fyE +cno +cno +rqh +mBF +mBF +gFH +max +max +uvX +vkW +dvI +emh +imC +jcb +gAu +pke +phe +pxb +pxb +pxb +pxb +pxb +pwa +pwa +qyl +hkR +eIp +epi +imC +rhr +aro +tFx +tFx +tFx +tFx +tFx +ign +cdN +imC +ign +fYj +bZQ +tWz +wfP +wfP +wfP +wfP +wfP +tCd +eYM +kqz +wfP +wfP +wfP +nwn +sRM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(40,1,1) = {" +bMX +cpy +tiQ +tiQ +saC +saC +mPb +sxC +utg +sxC +chm +chm +saC +sxC +sxC +sis +tiQ +tiQ +tiQ +tiQ +nVr +nVr +tiQ +tiQ +tiQ +tiQ +uuN +tps +tps +lnc +eLV +eLV +eLV +eLV +eLV +eLV +saC +saC +tiQ +tiQ +rfE +caO +wYm +wYm +dKH +kdD +oJS +bzC +xpg +xpg +cQz +kln +mJq +uWO +uWO +rKB +lwC +eaE +phX +eaE +dYK +gFp +eaE +eaE +eaE +hUZ +cnC +enS +eaE +eaE +uWO +uWO +vtc +vtc +vtc +pit +ien +ien +ien +hAs +hJZ +hEx +clY +hJZ +clY +slO +hJZ +clY +clY +rmX +xkO +lTM +xkO +lUh +clY +clY +sdt +vBJ +wQN +wQN +sEr +ucI +tPv +slO +fds +rLa +spQ +fjP +ltC +jMZ +prW +sPk +sPk +nkH +xrH +jDA +akh +akh +iIK +uUB +lLl +cpT +isn +xjf +pQA +jhl +sPk +dnM +iYN +vgN +gmL +cDH +cDH +gbe +vyz +czd +cDH +cci +dnM +rou +xXN +tUM +uOs +uOs +hMs +rLa +qfW +vXc +vXc +jue +wYa +cpy +cpy +vXc +vXc +yiM +wKQ +rMF +cGV +tCH +cno +nqY +keM +cem +bfH +lgT +cGV +kbS +gFH +max +max +uvX +vkW +hfH +dJz +jcb +jcb +prh +hkR +tfk +pIA +ien +pIA +pIA +pIA +ien +pIA +qLO +hkR +vYT +xSW +jIL +aco +imC +iFv +wQO +fFg +eYp +iFv +jvx +cdN +imC +ign +fYi +tFx +cLB +kXU +jJF +qKT +jJF +lAN +eYM +eYM +pea +wfP +jJF +jJF +nwn +sRM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(41,1,1) = {" +bMX +cpy +cpy +tiQ +saC +eCM +uCC +vWV +tps +chm +chm +saC +saC +saC +sxC +sis +wTv +tJk +sWS +tiQ +nVr +nVr +tJk +rUX +tiQ +fwo +gRL +sxC +sxC +eLV +eLV +eLV +sxC +sxC +eLV +eLV +saC +saC +tiQ +sYu +oKL +caO +wYm +wYm +dKH +bnR +bzC +bzC +bzC +xpg +cQz +kln +mJq +oTX +uWO +rKB +lwC +eaE +cnC +eaE +eaE +doF +eaE +eaE +bex +eaE +rOM +eaE +jvf +eaE +uWO +uWO +vtc +vtc +vtc +uWO +uWO +ien +prZ +pza +hJZ +hEx +hJZ +hJZ +clY +eUt +hJZ +hJZ +clY +rmX +xkO +xjx +xkO +lUh +clY +clY +fds +vBJ +wQN +ycJ +xHp +ucI +tPv +slO +fds +rLa +kSE +xEB +trj +fjP +fjP +rox +ezF +rLa +ppR +klY +klY +rbj +qfu +qfu +qfu +hLO +rLa +pqD +phF +eAm +uOs +oFW +hhz +rLa +imr +ruS +xNe +ruS +mtt +aFN +hdw +rLa +ezF +rox +fjP +uOs +uOs +lsD +pHW +rLa +qfW +vXc +vXc +upz +tDd +wLh +cpy +yiM +yiM +yiM +wKQ +rMF +cGV +wCK +cno +nqY +iTy +gKY +uHJ +tMv +eYO +fnA +nBT +max +max +uvX +tFx +tFx +lsl +tst +vck +tFx +tFx +lMh +lMh +ien +lMh +lMh +lMh +ien +lMh +dYM +tFx +llh +xSW +aco +aco +gar +tFx +tFx +tFx +tFx +tFx +hnS +wEy +ign +fYj +lAJ +tFx +eYM +eYM +eYM +eYM +eYM +eYM +eYM +eYM +pea +wfP +wfP +wfP +boW +sRM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(42,1,1) = {" +bMX +cpy +cpy +tiQ +tiQ +eCM +fkJ +cWa +sxC +chm +saC +saC +saC +saC +sxC +sis +wTv +uPc +uPc +kmd +nVr +nVr +uPc +saC +saC +uPc +gRL +sxC +sxC +sxC +eLV +sxC +sxC +sxC +sis +eLV +eLV +tiQ +tiQ +lrk +kqW +sJo +wYm +wYm +wWO +epo +eFq +bzC +xpg +xpg +cQz +kln +mJq +uWO +uWO +rKB +lwC +eaE +cnC +gSw +eaE +eaE +fvx +eaE +eaE +eaE +nRA +eaE +jFr +eaE +uWO +uWO +oTX +vtc +vtc +uWO +uWO +ien +qzy +eyM +gfi +hEx +hJZ +hJZ +clY +eUt +clY +hJZ +hJZ +uGd +sek +fuw +sek +qma +clY +hJZ +fds +rTY +rnZ +auX +gcV +ucI +kfq +slO +pnv +nLm +pId +rXf +tDH +hhz +ddz +arM +gmA +nLm +act +uUf +jJW +qss +uBP +uBP +acH +acH +nLm +nLm +sVE +trj +uOs +uAH +nLm +nLm +hKv +puP +tsq +xVl +kkg +vxH +nFy +nLm +lJd +sMJ +jDF +vXM +hMs +arM +lJd +rLa +qfW +vXc +vXc +vXc +wth +wYa +yiM +yiM +yiM +yiM +wKQ +mBF +mBF +aAF +keM +nqY +xwY +gKY +fyE +xZJ +mBF +mBF +gFH +max +max +ilc +fnA +tFx +tWG +tWG +tWG +tFx +fnA +tqp +tqp +ien +tqp +tqp +tqp +ien +tqp +luX +vkW +bVK +aco +gSN +xSW +xDI +tFx +cpy +cpy +cpy +tFx +tFx +gSM +jvx +fYi +tFx +tFx +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eYM +eYM +jJF +xij +jJF +jJF +eYM +eYM +cpy +cpy +cpy +cpy +bMX +"} +(43,1,1) = {" +bMX +cpy +cpy +cpy +tiQ +tiQ +fkJ +mDm +mPb +sxC +saC +saC +saC +chm +ekh +deW +okQ +okQ +oVw +oVw +oVw +oVw +oVw +oVw +lrb +oVw +pCJ +sxC +sxC +sxC +tps +sxC +sxC +oDE +iUW +fkJ +tiQ +tiQ +eSV +lpM +qZs +wYm +wYm +dcb +upL +kQK +kdD +bzC +xpg +pPt +sDS +kln +mJq +uWO +uWO +rKB +uWO +uWO +iTW +eaE +eaE +eaE +eaE +eaE +eaE +eaE +nHs +eaE +jFG +eaE +uWO +iTW +uWO +aNw +vtc +uWO +ien +ien +ien +pzo +hJZ +hEx +hJZ +qNh +clY +rnG +yhK +yhK +wBA +wBA +wBA +wBA +yhK +yhK +wBA +wBA +mxc +sKD +sKD +lzh +jzb +vkU +hJZ +eUt +vVt +nLm +nLm +nLm +nLm +xmt +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +dBu +wfq +gRw +xPo +qaq +jKn +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +xmt +nLm +nLm +nLm +qfW +vXc +umf +vXc +vaZ +wYa +yiM +yiM +yiM +yiM +wKQ +rMF +cGV +thT +aEz +eKH +hGA +mVt +cno +nPh +cGV +fnA +gFH +max +max +max +ilc +tqp +tqp +tqp +tqp +tqp +xjP +ofi +max +max +max +max +max +max +max +bIo +vkW +rfx +gAu +imC +wER +sDA +tFx +cpy +cpy +cpy +cpy +tFx +tFx +tFx +tFx +tFx +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eYM +eYM +eYM +xxB +eYM +eYM +cpy +cpy +cpy +cpy +cpy +bMX +"} +(44,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +eCM +fkJ +mDm +mPb +sxC +saC +chm +chm +chm +ekh +ekh +sxC +sxC +sxC +sxC +sxC +sxC +sxC +tps +sxC +dLw +sxC +sxC +utg +tps +sxC +oDE +iUW +fkJ +fkJ +tiQ +hHb +lpM +nvr +nRL +hfb +hfb +dKH +epo +dwR +jEE +bzC +nDM +nDM +qCu +jPu +pNm +tfP +tfP +tfP +tfP +bIe +tfP +tfP +eaE +eaE +eaE +tfP +jsQ +eaE +cnC +eaE +tfP +eaE +tfP +tfP +oeX +tfP +tfP +tfP +tfP +ien +hJZ +hJZ +iii +hEx +ixi +ixi +ixi +ixi +ixi +ixi +ixi +ixi +ixi +ixi +ixi +ixi +bgL +hJZ +hJZ +clY +clY +iPu +wBA +wBA +wBA +ldM +fds +nLm +kSE +blA +elz +nyx +oxb +fKI +aiY +oxb +nyx +rMc +oxb +fKI +iHp +oxb +fKI +dts +oxb +igY +wfq +dNm +tUM +ezg +uPE +oxb +elz +fKI +oxb +iSs +nyx +oxb +gum +fKI +oxb +elz +nyx +oxb +fKI +ozs +rbI +nLm +qfW +vXc +umf +vXc +vXc +wYa +umf +yiM +yiM +yiM +wKQ +rMF +cGV +cZd +jZv +tJf +cno +cno +keM +nPh +cGV +fnA +gFH +ofi +ofi +max +max +max +ofi +ofi +ofi +ofi +ofi +max +max +max +max +max +max +max +max +bIo +tFx +tFx +ldl +qdC +tuQ +tFx +tFx +cpy +fnA +tqp +tqp +tqp +tqp +tqp +tqp +tqp +tqp +fnA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eYM +qGL +rHT +tkr +eYM +cpy +cpy +cpy +cpy +cpy +bMX +"} +(45,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +tiQ +fkJ +fkJ +mDm +mPb +chm +chm +chm +chm +ekh +ekh +sxC +sxC +sxC +saC +saC +ekh +ekh +ekh +sxC +dLw +sxC +sxC +sxC +tps +oDE +iUW +fkJ +fkJ +tiQ +tiQ +rfE +nvr +nRL +hfb +hfb +saC +dKH +xZi +bzC +bzC +bzC +bzC +nDM +qCu +jPu +pNm +tfP +ylC +qyG +qyG +qyG +qyG +qyG +hfS +hfS +hfS +hfS +hPO +hWV +nyP +hfS +hfS +hfS +qyG +qyG +qyG +qyG +gMc +tfP +uSY +ien +pAp +hJZ +fds +xtb +xtb +xtb +cdb +cdb +cdb +xtb +xtb +xtb +xtb +xtb +xtb +xtb +ucI +clY +hJZ +hJZ +hJZ +slO +hJZ +hJZ +clY +clY +fds +nLm +mjI +eJm +hDE +dNc +nLm +aLr +pal +nLm +orO +aGN +nLm +aLr +pal +nLm +aLr +mTA +nLm +tZO +emQ +dNm +qEi +ezg +qaf +nLm +evj +wFH +nLm +evj +aLr +nLm +vtZ +aLr +nLm +evj +aLr +nLm +svr +koj +oYd +nLm +qfW +vXc +vXc +vXc +xLU +pnE +vXc +umf +yiM +yiM +wKQ +mBF +mBF +fLY +ank +pBV +cno +keM +puh +mBF +mBF +mBF +gFH +ofi +ofi +ofi +max +max +max +ofi +ofi +ofi +ofi +ofi +max +max +max +max +max +max +max +odA +jHg +tFx +tWG +tWG +tWG +tFx +xRF +tOc +xjP +ofi +ofi +ofi +ofi +ofi +ofi +ofi +ofi +ilc +tqp +tqp +fnA +hlk +hlk +hlk +hlk +hlk +hlk +fSI +kTo +jdQ +hlk +hlk +hlk +cpy +cpy +cpy +bMX +"} +(46,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +fkJ +fkJ +mDm +jOv +chm +chm +chm +chm +ekh +tps +tps +saC +saC +sxC +sxC +tps +sxC +sxC +dLw +sxC +sxC +oDE +yiV +iUW +fkJ +fkJ +uPc +tiQ +sYu +oKL +caO +wYm +hfb +saC +saC +dKH +vWs +bvJ +gXw +lqb +lqb +lqb +lUK +jPu +pNm +tfP +yim +bou +bcf +tfP +tfP +tfP +eaE +giL +eaE +eaE +eaE +hZZ +dHO +dHO +dHO +dHO +tfP +tfP +tfP +tfP +yim +tfP +ien +ien +ien +pAp +fds +xtb +lCT +pLL +aNf +cuX +lMK +sGi +uxK +xtb +weF +xOj +xFd +xtb +jyf +ixi +ixi +xaI +gNT +vin +ixi +ixi +ixi +xaI +xWb +nLm +weR +nLm +nLm +dXl +nLm +nLm +ust +nLm +nLm +ust +nLm +nLm +ust +nLm +nLm +ust +nLm +nLm +nth +eAm +fjP +gaL +nLm +nLm +dXl +nLm +nLm +bED +nLm +nLm +dXl +nLm +nLm +dXl +nLm +nLm +bED +weR +nLm +nLm +qfW +vXc +vXc +vXc +wYa +vXc +vXc +vXc +vXc +yiM +wKQ +rMF +mBF +qHi +uae +mOD +cno +lJy +jGz +mBF +fnA +fnA +xjP +tZh +tZh +ofi +ofi +max +max +max +max +ofi +ofi +ofi +ofi +ofi +max +max +max +max +max +ofi +odA +tHt +tHt +tHt +tHt +tHt +atR +xjP +ofi +ofi +max +ofi +tZh +tZh +ofi +ofi +ofi +ofi +ofi +ofi +uvX +hlk +jjF +epA +xOy +vak +hlk +nDW +eYy +kTo +tNt +jSL +hlk +cpy +cpy +cpy +bMX +"} +(47,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +fkJ +cAr +fkJ +fkJ +chm +chm +saC +chm +sxC +sxC +sxC +sxC +sxC +sxC +hVn +gyP +oFC +oFC +vew +sxC +oDE +iUW +saC +tiQ +oBd +dmU +dmU +tiQ +rfE +hGV +kpf +wYm +wXY +saC +saC +ibZ +kBc +cMg +kdD +gXw +sWn +uEw +lUK +jPu +pNm +tfP +yim +tfP +tfP +tfP +tfP +eaE +eaE +giL +bex +eaE +eaE +eaE +cnC +eaE +eaE +tfP +tfP +eFT +bcf +tfP +yim +tfP +tfP +ien +cwE +hJZ +fds +cdb +vUT +aNf +hBv +kfI +hBv +rGc +jwS +cdb +osB +kyC +nFR +xtb +xtb +cdb +cdb +xtb +nTv +vUN +iiE +iiE +iiE +oYa +nTv +nLm +bxQ +ezF +bCY +bDq +joH +ezF +gWz +lDK +aqe +gWz +bxQ +ezF +gWz +hhz +fRn +gWz +nLm +tAk +azp +maF +uOs +oFW +eCI +nLm +gWz +sjo +lDK +gWz +faz +bjx +gWz +nbQ +tgr +dNm +kqH +hhz +gWz +hhz +fQJ +nLm +aiQ +vXc +vXc +qfm +wYa +vXc +vXc +vXc +vXc +umf +wKQ +rMF +mBF +mBF +mBF +isS +kKI +mBF +mBF +mBF +mBF +gFH +max +tZh +ofi +ofi +ofi +max +max +max +max +ofi +ofi +ofi +ofi +ofi +ofi +max +max +max +max +max +ofi +ofi +ofi +ofi +ofi +ofi +max +max +ofi +ofi +max +max +ofi +ofi +max +ofi +ofi +ofi +ofi +ofi +uvX +hVx +tBO +pKx +pKx +tYd +hVx +nID +eJy +kTo +kTo +nfV +hlk +hlk +cpy +cpy +bMX +"} +(48,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +fkJ +fkJ +uPc +fkJ +fkJ +saC +saC +chm +sxC +sxC +sxC +sxC +sxC +sxC +dLw +ekh +ekh +utg +oDE +jOv +iUW +saC +saC +tiQ +sET +vqX +joc +tiQ +ljk +gsF +iCF +wYm +saC +saC +saC +saC +wYm +pUp +kBc +rLD +jRz +nml +lUK +jPu +pNm +tfP +yim +tfP +tfP +tfP +tfP +eaE +eaE +giL +fFA +gzu +eaE +gFp +cnC +jqa +enS +tfP +tfP +tfP +tfP +tfP +yim +tfP +tfP +ien +clY +clY +qZq +xtb +sHh +dOF +jmb +pLp +sHh +gHJ +sHh +xtb +nnx +ksd +tfo +osB +tfo +tfo +tfo +xtb +thv +pdo +thv +thv +thv +iaC +thv +nLm +hhz +sTZ +umH +oMq +umH +umH +vve +oJJ +oJJ +kGM +oJJ +oJJ +lYs +hhz +dyv +kdZ +nLm +tuX +phF +pJW +tUM +oFW +buZ +nLm +mie +umH +umH +gRw +oJJ +oJJ +xfX +mWz +umH +mie +umH +umH +mie +aVL +mYQ +nLm +pZw +vXc +nRs +vXc +wYa +vXc +vXc +vXc +umf +uJi +gbB +mBF +mBF +fdn +xci +nMn +bmP +bmP +iCJ +cGV +fnA +gFH +max +max +ofi +ofi +ofi +max +max +max +ofi +ofi +ofi +max +ofi +ofi +ofi +ofi +max +ofi +max +max +ofi +ofi +ofi +ofi +ofi +max +max +max +ofi +max +max +max +max +max +max +max +ofi +ofi +tZh +ofi +uvX +hlk +lBs +nbc +opT +mcM +hlk +vIj +kTo +dwo +kTo +kTo +yiP +hlk +hlk +cpy +bMX +"} +(49,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +fkJ +fkJ +fkJ +fkJ +fkJ +saC +saC +saC +jOv +jOv +jOv +mPb +sxC +sxC +loH +xYv +xYv +xYv +wKN +saC +saC +saC +tiQ +tiQ +dmU +dmU +amv +tiQ +rfE +gsF +iCF +wYm +wYm +saC +saC +saC +xzf +slu +sZC +gRk +sQq +xZF +aaX +sOb +uvG +qyG +rOf +bIe +tfP +eFT +tfP +dEc +eaE +eFt +eaE +gFp +eaE +eaE +cnC +hUZ +eaE +tfP +tfP +tfP +tfP +pjJ +yim +tfP +ien +ien +ien +clY +gOz +fNo +rGc +aNf +aNf +iCT +aNf +rGc +rGc +fNo +osB +ksd +kyC +kyC +ksd +ksd +tfo +fNo +tnc +tYZ +kdy +kdy +kdy +tMk +qFp +wFS +hMs +phF +fjP +pJW +fjP +lmN +pNf +uOs +uOs +weR +weR +nLm +ktx +aSb +vZc +uuo +dOm +vDv +uyP +esa +qvJ +jDJ +vDv +bId +enP +dnM +dnM +vGG +nLm +weR +nLm +ivk +dnM +xIW +sPk +dnM +esa +eLd +hhz +wFS +pZw +vXc +wth +vXc +wYa +vXc +vXc +yiM +uJi +rMF +mBF +mBF +tPB +fdn +xci +nar +bmP +bmP +eXv +cGV +fnA +gFH +max +max +ofi +ofi +ofi +max +ofi +ofi +ofi +ofi +max +max +max +ofi +ofi +ofi +ofi +ofi +ofi +max +ofi +ofi +ofi +ofi +cpy +cpy +max +max +max +max +max +max +max +max +max +max +max +ofi +tZh +ofi +uvX +hlk +hlk +hlk +hlk +hlk +hlk +hlk +iKj +kTo +kTo +kTo +kTo +ajn +hlk +cpy +bMX +"} +(50,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +cNV +oeR +oeR +oeR +cNV +cNV +saC +saC +saC +eCM +eCM +mDm +jOv +jOv +mxx +eCM +eCM +eCM +saC +saC +tiQ +tiQ +tiQ +qVz +vqX +hDa +vqX +hDy +rfE +gsF +iCF +wYm +wYm +xzf +saC +xzf +xzf +uOm +wYm +dKH +jRz +nml +lUK +jPu +iOW +tfP +tfP +tfP +tfP +tfP +bcf +kwR +wHM +phX +cnC +cnC +tfP +cnC +cnC +jtu +gSw +tfP +tfP +tfP +pNm +pjJ +yim +tfP +tfP +ien +clY +clY +pmw +lnf +qRM +qQI +qYo +rpu +lAm +own +qRM +lnf +ihe +xon +xon +aGM +xon +aGM +dVw +lnf +lDW +opO +xfp +xfp +xfp +wWX +gPz +aUk +hHV +rav +sPm +wwe +sPk +pNf +uOs +fjP +fjP +nLm +nLm +weR +dNm +tTR +tdJ +xsk +uNi +aIJ +fuq +eAm +uOs +fjP +aIJ +uNi +fjP +uOs +uOs +trj +nLm +nLm +nLm +bzw +uMM +uOs +fjP +uOs +trj +oFW +hMs +uNi +pZw +vXc +wth +vXc +wYa +yiM +yiM +uJi +rMF +mBF +mBF +dNy +qhO +qhO +geH +auw +bmP +bmP +mBF +mBF +mBF +gFH +max +max +ofi +ofi +ofi +ofi +ofi +max +ofi +ofi +cpy +cpy +cpy +cpy +tZh +ofi +ofi +ofi +ofi +ofi +ofi +ofi +ofi +max +cpy +cpy +max +max +max +max +max +max +max +max +max +max +max +max +ofi +ofi +ilc +tqp +cpy +cpy +cpy +cpy +hlk +hlk +thM +kTo +kTo +kTo +eYy +ajn +hlk +cpy +bMX +"} +(51,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +tKV +tKV +tKV +tKV +cNV +saC +saC +saC +tiQ +eCM +mMd +gae +mMd +nkB +tiQ +tiQ +saC +saC +saC +tiQ +iPG +qXq +wlm +xtW +exJ +vqX +hDy +rfE +gsF +iCF +wYm +wYm +wYm +xzf +xzf +wYm +kDj +xCi +upL +jRz +nml +lUK +qKd +iOW +tfP +tfP +tfP +bIJ +tfP +tfP +dYK +eaE +eaE +bex +eaE +tfP +eaE +eaE +eaE +eaE +eFT +tfP +bIJ +pNm +pjJ +yim +tfP +tfP +ien +sjY +clY +rhU +xtb +wBZ +hBv +tZL +moO +tZL +tZL +biV +xtb +trF +bac +bCE +ksd +ksd +ksd +tfo +xtb +srE +pdo +thv +thv +thv +thv +srE +nLm +hhz +tsT +qcb +gWz +fMk +ieb +fMk +fMk +fMk +fMk +fMk +aIJ +gWz +twv +pqf +hMs +nLm +dkd +azp +dNm +tUM +oFW +fES +nLm +ieb +ieb +fMk +dNm +fjP +fMk +ieb +ieb +fMk +ieb +fMk +qcb +pJW +eTW +dyZ +nLm +pZw +vXc +puY +yiM +wsY +yiM +uJi +gbB +mBF +mBF +jZO +eUi +bmP +bmP +nFu +bmP +aWU +mBF +mBF +mBF +fnA +gFH +max +max +ofi +ofi +tZh +max +max +max +max +cpy +cpy +cpy +cpy +cpy +cpy +tZh +ofi +ofi +ofi +ofi +ofi +ofi +ofi +ofi +cpy +max +max +max +max +max +max +max +max +max +max +max +max +max +max +ofi +ofi +ofi +cpy +cpy +cpy +cpy +cpy +hlk +alh +kTo +kTo +kTo +eTL +vfZ +hlk +cpy +bMX +"} +(52,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +epU +tKV +epU +tKV +cNV +saC +saC +saC +saC +rPb +rPb +rPb +rPb +qAx +rPb +saC +saC +saC +saC +tiQ +pjt +gYT +eic +oiq +hmI +vqX +hDy +wYC +gsF +kZY +wYm +wYm +wYm +wYm +dcb +rGa +tMF +gXw +gXw +lqb +nml +wgn +uAI +iOW +tfP +tfP +tfP +bIJ +bIJ +tfP +ogr +ogr +eUf +fLz +ogr +izp +ogr +dbC +eyD +ogr +tfP +bIJ +bIJ +pNm +pjJ +lCH +tfP +ien +ien +ien +sjY +qOP +cdb +jaS +aNf +hBv +kfI +hBv +aNf +gRa +cdb +trF +aOt +kyC +ksd +ksd +ksd +tfo +xtb +nTv +oTc +iIw +iIw +iIw +ovT +nTv +nLm +sjo +lrS +qcb +gWz +hhz +hhz +vXM +ezF +ezF +pCk +vXM +qcb +gWz +hhz +gqe +qcH +nLm +lLe +phF +dNm +tUM +ezg +kiR +nLm +xcV +jjh +hhz +gWz +qcb +hhz +pCk +qcH +bCY +hhz +hhz +qcb +gWz +bgM +ezF +nLm +aiQ +vXc +yiM +yiM +wsY +yiM +wKQ +mBF +mBF +viC +cjv +ycE +bmP +bmP +nar +bmP +mBF +mBF +umB +mBF +mBF +fnA +mwO +max +ofi +tZh +max +max +max +max +max +max +cpy +cpy +cpy +cpy +cpy +tZh +ofi +ofi +max +ofi +ofi +ofi +ofi +ofi +max +max +max +max +max +max +max +max +max +max +max +max +max +max +max +ofi +ofi +tZh +cpy +cpy +cpy +cpy +cpy +hlk +hlk +xHD +kTo +kTo +mGq +kTo +hlk +cpy +bMX +"} +(53,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +kwJ +oJz +kwJ +tKV +cNV +saC +saC +saC +saC +tKV +epU +epU +epU +oBF +tKV +epU +saC +saC +saC +tiQ +grY +vqX +gNH +cti +ylU +uge +hDy +qfb +sUy +ktM +mnm +wYm +wYm +wYm +dKH +epo +qeb +gXw +lqb +lqb +lqb +eaw +fVY +iOW +tfP +bcf +tfP +tfP +tfP +tfP +cpy +sNC +cpy +cpy +qeH +sNC +sNC +tfP +pjJ +sNC +sNC +sNC +sNC +lFW +pjJ +lCH +tfP +tfP +ien +sjY +clY +fds +xtb +fuT +uCe +rGc +iCT +aNf +baS +pui +xtb +qCS +pRr +osB +ksd +ksd +ksd +syq +xtb +vGb +ybS +wbg +wbg +jrO +scV +gIc +nLm +nLm +weR +acB +eBp +weR +weR +nLm +nLm +weR +weR +nLm +acB +eBp +nLm +weR +nLm +nLm +nLm +eDv +xno +emb +rGn +nLm +nLm +nLm +weR +nLm +slx +gVe +nLm +nLm +nLm +nLm +weR +nLm +uNi +cDd +weR +nLm +nLm +qfW +vXc +yiM +yiM +wsY +yiM +wKQ +rMF +cGV +xYn +uYu +xci +bmP +eUi +nar +vHv +mBF +dHa +eUi +fVZ +mBF +mBF +gFH +ofi +ofi +max +max +max +max +max +max +max +max +cpy +cpy +max +ofi +ofi +ofi +max +max +max +ofi +max +ofi +max +max +max +max +max +max +iiV +agu +agu +agu +agu +agu +agu +fgv +max +max +tZh +ofi +cpy +cpy +cpy +cpy +cpy +cpy +cpy +hlk +hlk +siR +lLc +kEy +hlk +hlk +cpy +bMX +"} +(54,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +kwJ +tKV +kwJ +tKV +cNV +saC +saC +saC +saC +tKV +epU +epU +epU +oBF +tKV +epU +saC +saC +saC +tiQ +tiQ +llR +mhQ +kMW +ylU +aXX +hDy +snQ +hAp +xhC +mnm +wYm +wYm +wYm +dKH +xZi +bzC +bzC +bzC +bzC +nDM +gWI +sNC +xEs +tfP +tfP +tfP +tfP +tfP +cpy +cpy +cpy +fgf +cpy +tfP +hzA +ihy +tfP +tfP +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +lCH +tfP +tfP +ien +sjY +clY +fds +xtb +xtb +xtb +cdb +fDx +cdb +xtb +xtb +xtb +xtb +xtb +wff +ksd +ksd +ksd +ptB +xtb +ipc +jXQ +iKF +iKF +iKF +iKF +luy +nLm +fKI +hfU +uOs +trj +inB +lep +wEq +nLm +rSy +fIz +qYQ +sPk +etc +eAT +hGX +jKn +nLm +dkd +fEi +dNm +tUM +kMY +gSE +nLm +btL +xXN +tpZ +vdf +vqm +wNl +wNl +iPP +nLm +xvE +adk +xLg +smi +mNX +vEc +nLm +qfW +yiM +yiM +yiM +wsY +yiM +wKQ +rMF +cGV +viR +fdn +dHy +bmP +xQj +jmE +xQj +mBF +mBF +hny +mBF +mBF +fnA +gFH +ofi +max +max +max +max +max +max +max +max +max +max +max +max +max +ofi +ofi +ofi +max +max +max +max +max +max +max +max +max +max +iiV +iKY +bZK +rXL +rXL +rXL +rXL +bZK +jTH +fgv +max +max +tZh +ofi +cpy +cpy +cpy +cpy +cpy +cpy +cpy +hlk +kTo +kTo +kTo +dLF +hlk +cpy +bMX +"} +(55,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +cNV +kwJ +tKV +kwJ +cNV +cNV +saC +saC +saC +saC +saC +agn +agn +agn +lMR +saC +saC +saC +saC +saC +tiQ +msU +qAe +gNH +kMW +ylU +rJb +hDy +iMC +rBz +npD +wYm +wYm +wYm +dln +jPa +vWs +oQr +kdD +bzC +nDM +nDM +pNm +pjJ +yim +tfP +tfP +tfP +tfP +tfP +tfP +cpy +cpy +cpy +cpy +cpy +hIp +ijv +tfP +tfP +pjJ +kcL +pjJ +pjJ +pjJ +pjJ +lCH +tfP +ien +ien +ien +clY +fds +xtb +xtb +xtb +fQg +fsh +uiT +xmZ +wkT +wkT +wkT +xtb +dTg +ksd +ksd +kyC +tfo +xtb +ipc +fjr +fjr +fjr +fjr +fjr +icc +nLm +fKI +uit +elF +aTa +xeA +uOs +aHa +nLm +rBC +sqF +nLm +vjB +fyC +npT +cve +qmy +nLm +voV +phF +eAm +oPu +kMY +mIe +nLm +xnR +jYU +aFe +hMs +eAm +iqa +rox +hMs +oxb +iqW +ruf +nQc +nKb +hMs +cfF +nLm +qfW +yiM +yiM +yiM +wsY +vXc +wKQ +mBF +mBF +mBF +mBF +ngc +dNy +hMI +pCg +nAa +rog +dEd +eUi +hYQ +mBF +kmq +gFH +max +max +max +max +max +max +max +max +max +xKk +aRC +aRC +aRC +aRC +aRC +xKk +ofi +ofi +max +max +max +max +max +max +max +max +iiV +iKY +bZK +bZK +uUu +oWh +nGI +qFz +bZK +bZK +jTH +fgv +max +max +max +max +cpy +cpy +cpy +cpy +cpy +cpy +hlk +hlk +kTo +dwo +hlk +hlk +cpy +bMX +"} +(56,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +cNV +epU +tKV +epU +cNV +cNV +saC +saC +tiQ +tiQ +lAZ +wZZ +wZZ +wZZ +wla +ixD +saC +tiQ +tiQ +saC +tiQ +hSU +gYT +gNH +kMW +hmI +vqX +hDy +itz +iMv +tCh +wYm +wYm +jqJ +kky +jTx +kTw +kSC +eFq +bzC +nDM +pRh +pNm +pjJ +lCH +tfP +tfP +tfP +tfP +tfP +pjJ +vjW +cpy +cpy +cpy +cpy +cpy +tfP +tfP +tfP +tfP +pjJ +pjJ +pjJ +pjJ +tfP +yim +tfP +tfP +ien +clY +clY +fds +xtb +yfj +err +osB +kyC +kyC +nBj +kyC +kyC +vPy +xtb +tnX +kyC +ksd +kyC +cPW +xtb +xXR +hJg +hJg +hJg +meX +fjr +icc +nLm +nLm +vKd +nLm +kzz +tUM +tUM +cJs +nLm +nLm +weR +nLm +fjP +pOd +qvM +uOs +hMs +nLm +mzV +vZA +pJW +rWu +kMY +qhi +nLm +nLm +nLm +nLm +bCY +trj +aSE +eaC +jMS +nLm +aFe +dZP +eDt +nLm +nLm +nLm +nLm +qfW +yiM +yiM +yiM +wYa +vXc +wKQ +rMF +cGV +hOc +mBF +mBF +iqe +xQj +pCg +nAa +duY +eUi +eUi +hYQ +mBF +mBF +gFH +ofi +tZh +ofi +max +max +max +max +max +max +bmk +haS +lSA +lSA +van +dsJ +bmk +max +ofi +ofi +max +max +max +ofi +max +max +max +fni +bZK +bZK +wXp +wvt +wHF +wHF +txK +svE +bZK +bZK +gol +max +max +max +max +max +cpy +cpy +cpy +cpy +cpy +cpy +hlk +kTo +kTo +dwo +hlk +cpy +bMX +"} +(57,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +cNV +kwJ +tKV +kwJ +cNV +cNV +unt +rUZ +pbc +tKV +tpR +epU +tKV +tKV +oBF +hce +saC +saC +rPb +lIk +tiQ +dYB +qAe +gNH +kMW +vFF +vqX +hDy +eCO +xVG +vda +wXY +hXS +jTx +kll +vpL +dKH +raE +kdD +bzC +nDM +nDM +pNm +pjJ +lCH +pjJ +tfP +pjJ +pjJ +tfP +pjJ +pjJ +vjW +cpy +cpy +cpy +vjW +inp +tfP +tfP +tfP +tfP +pjJ +pjJ +tfP +tfP +yim +tfP +tfP +ien +clY +clY +fds +xtb +uZq +ksd +ksd +ksd +kyC +sff +kyC +iUh +aJf +cdb +iHA +kyC +djB +ksd +kNg +xtb +xtb +xtb +xtb +xtb +tDe +fjr +icc +nLm +umY +dtk +nLm +pde +sPk +sPk +rMc +nLm +ihB +xXN +dZP +fjP +fjP +fjP +fjP +hMs +nLm +nLm +dIH +pJW +tUM +bZJ +nLm +nLm +umY +bCn +nLm +gKh +eAm +qBE +crP +hMs +nLm +jgq +xXN +kzz +nLm +rDU +uOu +nLm +rKV +yiM +yiM +vXc +wYa +vXc +wKQ +rMF +cGV +gOI +vyD +cGV +cnR +xQj +pCg +lpq +pvI +eUi +eUi +uYK +mBF +mBF +fnA +eeL +eeL +eeL +eeL +eeL +eeL +mwO +max +max +bmk +jop +tSk +tSk +aMG +pWj +bmk +max +ofi +ofi +max +ofi +ofi +ofi +ofi +max +max +fni +bZK +eWO +wvt +wHF +dUB +coD +wHF +wjI +vff +bZK +gol +max +max +max +max +max +max +cpy +cpy +cpy +cpy +cpy +hlk +rFf +kTo +hkc +hlk +cpy +bMX +"} +(58,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +kwJ +tKV +kwJ +oJz +cNV +tKV +qTT +rPb +tKV +tpR +tKV +kwJ +kwJ +jsJ +hce +tKV +rPb +rPb +wZG +tiQ +tiQ +tiQ +lye +gGt +hDy +hDy +hDy +hDy +kdD +gsF +wYm +wYm +jUe +fjJ +wYm +dKH +qgz +bzC +bzC +bzC +nDM +pNm +vjW +lCH +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +tfP +tfP +tfP +pjJ +cpy +pjJ +pjJ +tfP +yim +tfP +ien +ien +ien +clY +fds +xtb +dmY +toU +ldE +ldE +ldE +frl +kyC +kyC +aJf +cdb +lkm +kyC +jLF +kyC +iGp +xtb +kIO +cuK +xmf +xtb +ipc +fjr +icc +nLm +knQ +wqm +nLm +aLr +hhz +fsO +bxQ +nLm +xnR +jmM +fqn +hhz +hMs +nyx +nyx +nyx +oxb +nPQ +oRf +eAm +uar +yaI +gtZ +nLm +ayd +sKb +qYQ +oxh +ibK +cxJ +qny +pCk +nLm +fKI +hhz +bZA +vwt +bAt +wqm +nLm +qfW +yiM +yiM +gAa +uLF +vXc +wKQ +mBF +mBF +sWA +vzn +mBF +psl +eUi +tTS +bjV +wJS +eUi +bmP +kIp +cGV +fnA +fnA +fnA +tSL +xQk +xQk +xQk +tSL +fnA +mwO +max +bmk +wmq +mhy +mhy +rNc +nwD +bmk +max +ofi +ofi +ofi +ofi +tZh +cpy +cpy +max +max +fni +bZK +jtK +wvt +wHF +wHF +fPa +wHF +nvS +lXy +bZK +gol +max +max +max +max +max +max +max +max +uvX +hlk +hlk +hlk +bZm +eTL +ajn +hlk +cpy +bMX +"} +(59,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +kwJ +tKV +kwJ +tKV +cNV +tKV +wfA +hdE +tKV +tpR +tKV +kwJ +kwJ +jsJ +hce +tKV +rPb +rPb +nKQ +tiQ +rwH +qAe +gNH +jPY +rpE +jDm +vqX +hDy +mkZ +gsF +wYm +saC +saC +saC +xzf +dKH +raE +kdD +bzC +nDM +nDM +pNm +vjW +eDS +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +tfP +tfP +cpy +cpy +cpy +pjJ +tfP +yim +tfP +tfP +ien +rzq +clY +fds +xtb +rmt +qdc +raS +uIJ +rmt +gnS +ksd +kyC +frb +xtb +dug +vJP +pAW +kyC +iGp +xtb +osB +tfo +nBj +xtb +ipc +fjr +icc +nLm +nLm +nLm +nLm +nLm +xmt +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nxN +phF +eAm +uOs +arn +bmJ +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +nLm +xmt +nLm +nLm +nLm +nLm +pbh +vXc +yiM +tiJ +mAE +vXc +wKQ +rMF +fcB +nPh +iSO +fcB +dAt +bmP +nar +eUi +mBF +fhw +mzy +fUV +fYY +fnA +fnA +tSL +tSL +uDk +uDk +wBY +tSL +tSL +gFH +max +xKk +bmk +bmk +bmk +bmk +bmk +xKk +max +max +ofi +ofi +ofi +tZh +cpy +cpy +max +max +omT +bZK +xQK +wHF +wvt +aKW +xio +wHF +wjI +qso +bZK +czG +max +max +max +max +max +max +max +max +ilc +fnA +hlk +hlk +dPA +eTL +ajn +hlk +cpy +bMX +"} +(60,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +epU +tKV +epU +tKV +cNV +dZh +vBD +rPb +tKV +tpR +tKV +kwJ +kwJ +jsJ +hce +tKV +rPb +vAT +dZq +tiQ +oHi +qvL +baQ +hka +xqa +exJ +vqX +jhH +kdD +gsF +wYm +saC +saC +saC +xzf +dKH +kQK +kdD +bzC +nDM +pRh +pNm +vjW +eDS +pjJ +pjJ +gwo +pEW +pEW +eSD +pEW +pEW +pEW +pEW +pEW +pEW +uQZ +pjJ +pjJ +pjJ +pjJ +cpy +pjJ +pjJ +tfP +yim +tfP +tfP +ien +puV +clY +fds +cdb +qBe +mqk +hLo +sTA +rwR +gnS +paa +ksd +osB +xtb +bRn +paa +pAW +kyC +dYR +xtb +eLq +faS +jLF +xtb +ipc +fjr +icc +nLm +aMx +biQ +wLn +elz +hhz +uId +rfL +nLm +deR +nLm +deR +nLm +nLm +deR +nLm +deR +nLm +xsI +nNC +pJW +tUM +arn +xLL +nLm +cUv +nLm +cUv +nLm +cUv +nLm +cUv +nLm +mBU +eHl +eHl +hhz +tec +aCL +aCL +nLm +xxu +vXc +vXc +yiM +tDd +rXb +kbr +qGf +tZU +jXk +dHf +tZU +rAf +rAf +toF +amG +mWS +hoL +ayW +hLX +mBF +mBF +oCu +tSL +hpP +kBZ +xry +ygn +kgN +tSL +gFH +max +bmk +haS +lSA +lSA +van +dsJ +bmk +max +ofi +ofi +ofi +max +max +tZh +cpy +max +max +yjT +ida +pFP +wvt +xio +ogM +oMN +aHb +aGQ +vuT +syt +wzH +max +cpy +max +max +max +max +max +max +max +uvX +hlk +tei +iIb +kTo +vfZ +hlk +cpy +bMX +"} +(61,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +tKV +tKV +tKV +tKV +cNV +rpN +vBD +rPb +tKV +tpR +epU +tKV +oJz +oBF +hce +tKV +rPb +rPb +tKV +tiQ +piv +bLH +ufD +jDa +ccw +xHi +rfv +gsO +qaJ +uNH +hKV +saC +saC +saC +xzf +dKH +raE +jEE +bzC +nDM +nDM +gWI +pEW +rbt +pEW +pEW +gWI +iAv +bZB +iAv +iAv +iAv +iAv +iAv +iAv +iAv +pNm +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +tfP +tfP +yim +tfP +ien +ien +ien +clY +fds +cdb +xPA +igv +hLo +tLw +aiw +gnS +paa +kyC +tfo +fNo +ujh +ksd +sff +ksd +osB +fNo +tfo +gvT +jLF +cdb +ipc +fjr +xsV +qcF +hOz +dmm +thw +vWl +fjP +guB +pWL +nLm +wMn +nLm +wMn +nLm +nLm +wMn +nLm +wMn +nLm +nLm +phF +pJW +xXN +uVu +nLm +nLm +kQI +nLm +kQI +nLm +kQI +nLm +kQI +nLm +hUP +ruf +ruf +fjP +fjP +fjP +xNT +rLa +vcU +sDq +faQ +yiM +sPs +vXc +kBA +mBF +mBF +nnh +abp +mBF +spm +jaO +lYR +qGP +mBF +eUi +ubi +mBF +mBF +rMF +rMF +tSL +fHU +wnM +exu +kBZ +dbR +sky +gFH +max +bmk +jop +tSk +tSk +aMG +pWj +bmk +max +ofi +ofi +max +max +max +max +ofi +tZh +tZh +yjT +hif +iIz +wHF +xio +lxt +lxt +xio +ufu +iIz +hif +tSb +max +cpy +cpy +cpy +max +max +max +max +max +uvX +hlk +tQB +jAt +kTo +kTo +hlk +cpy +bMX +"} +(62,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +cNV +oeR +oeR +oeR +cNV +cNV +xHs +vAT +rPb +tKV +tpR +epU +epU +saC +nIZ +sDh +tKV +rPb +rPb +tKV +tiQ +dAy +pDf +mTN +ksr +ksr +aLc +vqX +hDy +thB +fzU +gTi +saC +saC +saC +tdp +jAl +wFW +bzC +bzC +bzC +nDM +gWI +gWI +bSU +gWI +iAv +iAv +iAv +vZP +iAv +saC +saC +saC +saC +saC +iAv +pNm +pjJ +pjJ +tfP +pjJ +pjJ +tfP +tfP +tfP +yim +tfP +tfP +ien +clY +clY +dsW +xtb +xPA +bID +rSd +bNf +aiw +eRL +kmi +aGM +dVw +lnf +dVw +xon +iJU +xon +dVw +lnf +dVw +jxz +jLX +cwt +jng +iKF +fBz +kVU +dMU +dnM +nqo +xTJ +fjP +fjP +aFa +rLa +pGo +wLU +aFN +mPB +aFN +aFN +wLU +imr +rLa +wqC +mYL +gGW +qSw +oFW +lzT +nLm +ebM +nLm +ebM +nLm +ebM +nLm +ebM +nLm +mhi +fjP +xXN +uOs +uar +fjP +qct +rLa +kxe +hgr +fRP +vTn +cmF +qHI +niZ +ums +mBF +mBF +mBF +mBF +mBF +cGV +cGV +mBF +mBF +ekA +mBF +mBF +rMF +rMF +rMF +tSL +npR +kzT +xgX +kBZ +dbR +sky +gFH +max +bmk +wmq +mhy +mhy +rNc +nwD +bmk +max +ofi +ofi +ofi +max +max +max +max +tZh +tZh +yjT +bZK +gkM +wHF +wHF +xio +aKW +wvt +wvt +gec +bZK +tSb +max +cpy +cpy +max +max +max +max +max +max +uvX +hVx +pBX +jAt +kTo +hlk +hlk +cpy +bMX +"} +(63,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +tKV +tKV +tKV +tKV +cNV +xHs +rPb +rPb +tKV +tpR +rDj +saC +saC +saC +isq +vun +rPb +rPb +tKV +tiQ +sXu +vqX +wlm +vqX +vqX +oDR +hDy +hDy +kdD +gsF +jiY +saC +saC +saC +wYm +dKH +raE +jEE +bzC +iAv +jUY +dzr +dzr +jUo +iAv +iAv +iAv +xzn +xzn +wcS +wcS +saC +saC +tjR +tjR +hPa +pNm +oeX +tfP +tfP +tfP +tfP +tfP +tfP +tfP +yim +tfP +uSY +ien +clY +clY +dsW +xtb +xPA +hLo +hLo +hLo +aiw +muu +paa +ksd +osB +xtb +egz +ctr +xtb +egz +ctr +xtb +osB +ksd +wmk +xtb +ipc +fjr +icc +qcF +eqC +qjC +tCs +mbH +dnM +sPk +aWl +veJ +vra +bFn +xrH +xrH +cDH +xrH +xrH +xXL +frt +iYN +sPk +qDR +dnM +sPk +iYN +bId +lPN +oFr +lOi +xrH +nEX +amP +lOi +pzJ +sPk +dnM +wDZ +eAT +mum +rGE +rcZ +rLa +rmw +mpN +vXc +grq +grq +kqJ +mAR +cbj +jrd +mBF +ums +eju +mBF +rMF +upK +mBF +rMF +rMF +mBF +rMF +rMF +rMF +tSL +tSL +jrr +kzT +qzT +kBZ +jrr +sky +gFH +max +xKk +bmk +bmk +bmk +bmk +bmk +xKk +max +ofi +ofi +ofi +tZh +max +max +max +ofi +ofi +yjT +bZK +tVM +wvt +wHF +wHF +qJT +wvt +wHF +sfs +bZK +tSb +max +max +cpy +max +max +ofi +max +max +max +uvX +hlk +kcP +afS +kTo +msA +hlk +cpy +bMX +"} +(64,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tKV +tKV +tKV +kwJ +tKV +cNV +xHs +agn +agn +xuL +yli +saC +saC +saC +saC +saC +oLU +xuL +xuL +hDy +hDy +hDy +hDy +lye +gGt +hDy +hDy +hDy +kdD +kdD +gsF +ipB +wYm +saC +wYm +wYm +ibZ +cMg +kdD +bzC +iAv +iAv +gcI +gcI +dUx +iAv +iAv +mWw +nmK +wcS +wcS +xzn +xzn +fLS +xzn +hHd +hPa +pNm +ylC +qyG +qyG +qyG +qyG +qyG +qyG +qyG +eeY +tfP +ien +ien +ien +clY +fds +cdb +xPA +hLo +hLo +hLo +aiw +fsh +paa +ksd +tMi +xtb +xtb +xtb +xtb +xtb +xtb +xtb +ngi +tfo +ksd +xtb +ipc +fjr +icc +lQh +dpW +jFc +nhs +qcy +tUM +nBv +vxM +uNi +bkl +aFN +txY +pbp +txY +pbp +aFN +vwR +uNi +aIJ +oPu +trj +uOs +uOs +vds +uNi +lyq +ruS +txY +pbp +pbp +sMV +ruS +uNi +uOs +fjP +hxt +tUM +eAm +rGE +ezF +rLa +qfW +tVv +qgj +tvq +ftl +yiM +rwB +gBe +wKQ +vjP +rMF +rMF +tCZ +rMF +rMF +tCZ +rMF +rMF +uGE +rMF +tSL +tSL +tSL +syp +oYi +wnM +kzT +ygn +hiU +sky +gFH +ofi +max +max +max +max +max +max +max +max +max +ofi +ofi +ofi +max +max +ofi +ofi +ofi +yjT +bZK +fTe +wvt +wvt +coD +coD +wvt +wvt +fwT +bZK +juY +mse +mse +mse +mse +aYO +ofi +ofi +max +clg +fnA +hlk +hlk +gQW +eTL +hlk +hlk +cpy +bMX +"} +(65,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tKV +tKV +lAZ +uHC +tKV +cNV +xHs +rPb +rPb +tKV +tpR +saC +saC +saC +saC +saC +wla +wZZ +uHC +kdD +rHt +jAC +kdD +raE +kdD +kdD +kdD +cAU +kdD +hGV +lnV +uOm +wYm +wYm +rlZ +wYm +wYm +mRo +gXw +bzC +iAv +iAv +duV +duV +kxN +iAv +iAv +saC +eYA +akp +hHd +sHt +xeI +xzn +xzn +hHd +hPa +pNm +yim +tfP +tfP +cpy +tfP +tfP +tfP +tfP +yim +pjJ +pjJ +ien +esw +clY +fds +xtb +qBc +jZo +rbb +jZo +rwK +hzk +pzD +ksd +xkh +xtb +mLx +czF +xtb +mLx +czF +xtb +hRv +arG +tfo +xtb +ipc +fjr +icc +nLm +fSx +hMs +gdt +uOs +grw +uOs +nIv +rLa +pZF +jnk +jnk +mPR +nbx +nbx +aFN +imr +rLa +qRb +ryB +trj +gVg +vOL +xCx +rLa +pGo +ruS +aFN +mQq +aFN +sMV +qCG +rLa +qct +fjP +tUM +uOs +vzp +ezF +cEG +nLm +oTV +ofy +sPs +grq +grq +yiM +xly +wYa +wKQ +rMF +tSL +qKr +tSL +tSL +rMF +tSL +tSL +tSL +tSL +tSL +tSL +xsL +fvv +kBZ +wnM +wnM +kzT +ygn +qPe +tSL +gFH +tZh +ofi +max +max +max +max +max +max +max +max +tZh +tZh +ofi +max +ofi +ofi +ofi +ofi +yjT +bZK +bZK +pGk +wvt +wHF +wHF +wHF +pFP +bZK +bZK +gol +max +max +ofi +ofi +erA +ofi +ofi +ofi +uvX +hlk +hlk +hlk +sEe +eTL +kTo +hlk +cpy +bMX +"} +(66,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +tiQ +tKV +tKV +lAZ +ikq +hce +tKV +cNV +xHs +rPb +rPb +tKV +tpR +epU +saC +saC +saC +saC +oBF +epU +hce +kdD +jRz +xPN +pof +pLZ +kBc +kBc +tLu +uju +tEF +cYN +sZC +rZI +sZC +sZC +sZC +krw +gzN +okM +saC +bzC +iAv +wJr +edt +edt +lpn +pss +iAv +saC +saC +saC +hHd +sHt +sHt +xzn +hHd +xzn +dSU +pNm +yim +tfP +cpy +cpy +cpy +tfP +tfP +tfP +yim +pjJ +pjJ +ien +dWc +clY +fds +cdb +xPA +hLo +hLo +hLo +aiw +muu +kyC +kyC +xkh +xtb +mLx +czF +xtb +mLx +cOF +xtb +xtb +cdb +xtb +xtb +ipc +fjr +icc +nLm +nLm +bCY +mzk +uOs +fjP +fjP +phr +nLm +pDd +kbE +kbE +nwj +lni +kbE +qIp +gZt +nLm +pqD +qcH +mie +aIJ +qcH +lzT +nLm +fvG +wGD +rId +nwj +gZt +pZF +kvn +nLm +iFK +lsD +fjP +fjP +mWi +rcZ +nLm +nLm +pbh +vXc +jrL +qig +yiM +yiM +twT +sVP +rMF +tSL +tSL +xQk +tSL +tSL +jrU +tSL +crw +hjU +dzD +tSL +kgN +kBZ +kgN +wnM +wnM +tSL +phn +kzT +kBZ +rNJ +gFH +ofi +ofi +tZh +max +max +max +max +max +clg +eeL +eeL +eeL +eeL +eeL +eeL +mwO +ofi +ofi +hov +sOB +bZK +bZK +rWW +mcq +wPY +tIq +anG +bZK +vVd +lUV +max +clg +eeL +eeL +qlx +eeL +eeL +eeL +fnA +cpy +cpy +hlk +kTo +eTL +hkc +hlk +cpy +bMX +"} +(67,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +mDJ +tKV +lAZ +tnH +fEd +bMx +tKV +cNV +xHs +rBM +rPb +tKV +tpR +epU +saC +saC +saC +saC +ast +whS +bIN +qaJ +nAm +wfk +sZC +hlf +tso +tso +dtq +tdp +wYm +wYm +wYm +nSD +wYm +wYm +wYm +wYm +xzf +saC +saC +bzC +iAv +uqD +iPy +tWv +tbf +pss +iAv +saC +saC +jPC +xzn +xeI +xeI +xzn +xzn +vZP +dSU +pNm +yim +tfP +cpy +cpy +cpy +cpy +tfP +tfP +lCH +pjJ +ien +ien +ien +clY +fds +xtb +xPA +hLo +hLo +hLo +aiw +gnS +paa +kyC +xkh +xtb +hEo +cOF +xtb +hEo +dam +xtb +xAO +xAO +xAO +xtb +ipc +ugV +myw +yjm +nLm +nLm +vXM +hMs +rGE +tRi +xTT +nLm +nwj +uUU +uUU +nwj +uUU +uUU +nwj +nwj +nLm +nLm +nLm +slx +wqU +nLm +nLm +nLm +nwj +uUU +uUU +nwj +uUU +uUU +nwj +nLm +srq +bxQ +cve +hMs +jKn +nLm +nLm +rMF +fbL +yiM +yiM +sPw +yiM +vXc +vXc +cfJ +tSL +tSL +che +uis +uis +jJG +ygn +kyY +kBZ +ygn +rnP +sky +dbR +kBZ +dbR +wnM +kzT +yfH +xDl +kBZ +txG +tSL +fnA +eeL +eeL +mwO +max +max +max +max +clg +fnA +wIr +wIr +nKL +qvn +wIr +wIr +kmq +mwO +ofi +ofi +hov +sOB +bZK +rXL +rXL +rXL +rXL +bZK +vVd +nGB +max +clg +kmq +wIr +nKL +cOs +nKL +nKL +wIr +cpy +cpy +cpy +hlk +kTo +yiP +ajn +hlk +cpy +bMX +"} +(68,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +lAZ +tnH +epU +hce +tKV +tKV +cNV +xHs +rBM +rPb +tKV +tpR +epU +saC +saC +saC +saC +oBF +jQN +hce +kdD +jRz +fJb +xCi +nTd +xCi +xCi +xCi +vOE +rGa +jwR +wYm +uOm +wYm +wYm +wYm +xzf +saC +saC +saC +bzC +iAv +wqh +bpe +ach +vDO +qmI +iAv +saC +lqd +xzn +xzn +xzn +hHd +hHd +xzn +xzn +dSU +pNm +yim +tfP +cpy +cpy +cpy +cpy +tfP +pjJ +lCH +pjJ +pjJ +ien +nBs +clY +fds +xtb +xPA +wiz +rwx +tyy +aiw +gnS +paa +ksd +szw +xtb +lqX +lqX +xtb +lqX +lqX +xtb +xAO +xAO +xAO +cdb +ojQ +ugV +hNR +pDm +yjm +nLm +nLm +fSx +dXT +hKc +nLm +nLm +ahP +wbg +wbg +wbg +wbg +vqB +glt +uUJ +rDi +pQE +hwJ +wSP +owc +lzl +pQE +nXD +rMF +gBO +gBO +gBO +gBO +gBO +rMF +nLm +nLm +rcZ +hjP +jMS +nLm +nLm +rMF +fbL +vXc +bMN +yiM +yiM +pWR +rXb +bcS +oXp +tSL +lQV +dOU +ygn +toB +ygn +kBZ +kBZ +rtk +toB +uDk +sky +dbR +kBZ +dbR +kzT +xSm +yfH +xDp +kBZ +cLv +tSL +fnA +fnA +tSL +kmq +mwO +max +max +clg +kmq +wIr +wIr +sJi +aUB +aUB +jOT +wIr +wIr +dbP +aYm +eeL +eeL +ncI +mOt +mOt +mOt +mOt +mOt +sFv +uyn +enl +bfE +dbP +wIr +wIr +qVG +amW +aUB +mhu +wIr +wIr +cpy +hlk +hlk +kTo +kTo +ajn +hlk +cpy +bMX +"} +(69,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +ugF +epU +epU +hce +tKV +cNV +cNV +cNV +dTy +tKV +tKV +ugF +saC +saC +saC +saC +eJN +hVe +ufG +bMx +kdD +jRz +jAC +kdD +raE +kdD +kdD +saC +saC +saC +kHH +bey +uOm +wYm +wYm +wYm +saC +saC +saC +saC +bzC +iAv +wqh +hYe +ach +vDO +oKM +iAv +saC +saC +hHd +xzn +hHd +hHd +xzn +xzn +xzn +dSU +pNm +yim +tfP +cpy +cpy +cpy +cpy +vjW +pjJ +lCH +pjJ +pjJ +ien +hmM +clY +fds +xtb +xPA +piE +hLo +tLw +aiw +gnS +paa +kyC +tfo +xtb +cvc +yag +xtb +mnG +hBL +xtb +xAO +xAO +xAO +cdb +ipc +ugV +hNR +ugV +fUJ +yjm +nLm +qcF +lQh +qcF +nLm +ahP +pvn +fjr +xfD +fjr +fjr +bPH +dox +tGl +nOu +vnQ +jAs +uPy +qGK +lzl +vnQ +nXD +qfW +vXc +vXc +mqC +pwz +dFg +oCI +rMF +nLm +rLa +rLa +rLa +nLm +rMF +fbL +vXc +vXc +upz +yiM +yiM +wsY +vXc +wKQ +tSL +tSL +jDX +wnM +qEf +eAX +suF +wnM +wnM +tuJ +pkw +iSo +sky +dbR +ygn +dbR +kzT +rXH +yfH +nBY +jAJ +vgS +tSL +tSL +tSL +tSL +tSL +fnA +eeL +eeL +fnA +wIr +wIr +pCc +aUB +fTP +qzQ +aUB +rJo +wIr +wIr +ygN +nni +nni +nni +nni +nni +nni +nni +nni +nni +nni +nni +vkm +wIr +wIr +llH +aUB +oqp +qzQ +aUB +llH +wIr +wIr +hlk +abc +kTo +kTo +hlk +hlk +cpy +bMX +"} +(70,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +hce +tKV +tKV +agn +tKV +lAZ +wZZ +wZZ +tnH +saC +saC +saC +saC +xtp +xuL +xuL +xuL +hDy +hDy +hDy +hDy +lye +gGt +hDy +hDy +hDy +saC +saC +gsF +uOm +wYm +wYm +saC +saC +saC +saC +saC +bzC +iAv +gxd +vdN +ach +vDO +edt +iAv +saC +hHd +nsv +jxI +jxI +jxI +jxI +jxI +jxI +wqM +edz +rOf +cpy +cpy +cpy +cpy +cpy +cpy +pjJ +lCH +pjJ +ien +ien +ien +sjY +fds +cdb +qBe +sKz +hLo +kmE +rwR +ykO +dlX +tRn +tHb +tUV +tHb +ihe +fvm +osB +ktU +xtb +xAO +xAO +xAO +xtb +ipc +ugV +hNR +ugV +ugV +cOP +sRP +sRP +wbg +peI +wbg +pvn +ugV +ugV +kGX +fjr +fjr +rZc +dox +tGl +nOu +vnQ +lzl +xeg +uMO +jAs +vnQ +nXD +qfW +laX +dFH +vXc +vXc +vXc +vXc +oCI +gBO +gBO +gBO +gBO +gBO +fbL +vXc +vXc +vXc +upz +vXc +yiM +wsY +yiM +wKQ +tSL +tSL +sDW +wnM +qEf +hjW +dbG +eKL +wnM +fMN +pnb +iSo +sky +jrr +kBZ +jrr +kzT +pCP +yfH +xDl +sar +jer +tSL +eAJ +pst +dbR +tSL +wIr +wIr +kwU +wIr +wIr +rzw +aUB +fTP +oLa +oLa +qzQ +aUB +kIN +wIr +wIr +wIr +kwU +kwU +kwU +kwU +wIr +wIr +kwU +kwU +kwU +kwU +wIr +wIr +llH +cDM +fTP +xgH +oLa +qzQ +aBt +llH +wIr +wIr +oJu +yiP +kTo +hlk +cpy +cpy +bMX +"} +(71,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +fZR +uHC +tKV +agn +tKV +tpR +epU +epU +saC +saC +saC +saC +epU +ato +tKV +rPb +rPb +mQe +tiQ +aIR +vqX +wlm +vqX +vqX +jDm +hDy +hDy +saC +fzU +gTi +tdp +saC +saC +saC +saC +saC +saC +bzC +iAv +tdv +hYe +ach +vDO +edt +iAv +lqd +xzn +sQN +xeI +xeI +eTt +hHd +xzn +xzn +hPa +pNm +tfP +cpy +cpy +cpy +cpy +cpy +cpy +cpy +lCH +pjJ +pjJ +ien +fkD +clY +fds +xtb +rmt +bBt +rcP +qyS +rmt +muu +kyC +ksd +osB +cdb +osB +kyC +nBj +ksd +osB +lli +xAO +xAO +xAO +cdb +ipc +ugV +hNR +ugV +nDo +ugV +fjr +fjr +fjr +fjr +ugV +ugV +ugV +xQZ +ugV +ugV +fjr +rZc +dox +tGl +nOu +vnQ +lzl +xeg +uMO +jAs +vnQ +nXD +qfW +rjn +bVu +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +vXc +upz +vXc +vXc +wsY +yiM +oCI +rMF +tSL +eOy +kzT +qEf +msn +wfl +eKL +kzT +hsh +eyV +cse +tSL +ole +kBZ +gse +kzT +xDl +tSL +pJZ +drz +uPa +tSL +uDk +oic +xKw +wBY +wIr +mHk +fdz +miD +wIr +qgM +aUB +oLa +dbR +dbR +tkf +qzQ +aUB +jVE +wIr +mHk +fdz +fFq +fdz +fdz +wIr +wIr +fdz +fdz +fFq +fdz +miD +wIr +sFE +hXR +pOs +uNu +pKl +oLa +qzQ +aBt +beY +wIr +kgU +jLu +kTo +hlk +cpy +cpy +bMX +"} +(72,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +mvx +sSx +ukY +vMc +jxW +kpL +ipJ +xXq +ipJ +sSx +whS +auv +saC +saC +saC +saC +epU +ato +tKV +rPb +rPb +mQe +tiQ +vOr +jSc +gmv +pLt +exJ +vqX +vqX +hDy +mkZ +gsF +uOm +wYm +saC +saC +saC +saC +saC +saC +bzC +iAv +wJr +hYe +ach +vDO +wqh +iAv +hHd +xzn +sQN +xeI +sHt +xeI +ufA +hHd +xzn +hPa +pNm +tfP +cpy +cpy +cpy +cpy +cpy +vjW +pjJ +lCH +pjJ +pjJ +ien +bHA +clY +fds +cdb +hBY +hBY +arG +arG +arG +scR +ksd +ksd +wkT +cdb +osB +kyC +rsa +ksd +osB +lli +xAO +xAO +xAO +cdb +ipc +ugV +spe +hcX +vwi +vwi +gRS +vwi +vwi +vwi +vwi +vwi +vwi +vwi +vwi +pqX +nQx +rvx +fZy +hAg +nOu +vnQ +bVf +xeg +qGK +jAs +vnQ +nXD +qfW +qbI +qlD +qpz +qpz +qpz +qpz +qpz +qpz +qpz +qbW +lrm +pnO +umf +umf +vXc +vXc +vXc +pEA +tpD +tBQ +yiM +yiM +wKQ +cgT +kBZ +wnM +kzT +hsh +nNz +eKL +qNl +kzT +wnM +ygn +mII +ygn +wnM +wnM +wnM +xDp +kzT +kzT +kzT +kDY +mfG +kBZ +ygn +ygn +ygn +kJM +oFB +tkf +iiB +kJM +aUB +qzQ +oLa +dbR +dbR +tkf +fTP +fTP +cDy +kJM +oFB +oLa +oLa +oLa +tkf +heI +kBW +tkf +tkf +tkf +tkf +iiB +kJM +idI +oqp +oLa +pKl +pKl +tkf +qzQ +aBt +whg +wIr +aba +jKP +eYy +hlk +cpy +cpy +bMX +"} +(73,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +jsJ +tpR +epU +epU +hce +aEf +tKV +agn +tKV +vcZ +ufG +rOJ +lcR +saC +saC +saC +epU +ato +tKV +rPb +rPb +tKV +tiQ +xce +hJK +gNH +kMW +sxD +exJ +vqX +jhH +kdD +gsF +uOm +oAm +saC +saC +saC +saC +saC +saC +bzC +iAv +apk +hYe +ach +bbP +wqh +iAv +xzn +hQd +rVq +hQd +hQd +xzn +gBi +saC +hHd +hPa +pNm +pjJ +pjJ +pjJ +cpy +cpy +pjJ +pjJ +pjJ +lCH +pjJ +ien +ien +ien +uSo +fds +xtb +tfo +osB +pRr +osB +tfo +frl +tfo +hBY +wkT +cdb +tfo +wmk +jLF +wmk +tfo +xtb +xAO +xAO +xAO +xtb +ipc +nDo +ugV +hNR +utV +cKI +hFd +kVz +etB +mlM +gMs +ebA +niC +aWE +meX +ugV +spe +nQx +fjr +xfD +nOu +pQE +pQE +wSP +owc +pQE +pQE +nXD +qfW +vXc +vXc +vXc +vXc +vXc +yiM +yiM +yiM +trW +uFB +taH +vPO +lrm +pnO +umf +vXc +yiM +vXc +vXc +tDd +rwE +bXS +iuA +uuc +asL +lUv +msj +hIP +uOJ +mCA +qYG +asL +rsg +jSV +uuc +rsg +rsg +mCA +msj +eNf +rzI +mBE +rsg +xAF +uuc +msj +msj +rsg +asL +bgC +bUv +pOs +bUv +bgC +sxo +iXM +uIk +dbR +dbR +eng +iXM +vUe +kkA +bgC +kIt +fzp +fzp +pOs +pOs +eBw +bUv +fzp +fzp +pOs +pOs +kIt +bgC +rDc +huu +tkf +pKl +pKl +tkf +qzQ +aUB +oFB +mSI +wic +eDF +jLu +hlk +cpy +cpy +bMX +"} +(74,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +jsJ +tpR +epU +epU +hce +tKV +cNV +cNV +cNV +aEf +tKV +jsJ +tpR +saC +saC +tKV +epU +ato +tKV +rPb +rPb +tKV +tiQ +mFY +vqX +xiX +ccw +lPW +vjD +aze +gsO +qaJ +uNH +leT +doK +wYm +saC +saC +saC +saC +saC +bzC +iAv +edt +iNd +ach +bbP +wqh +iAv +pbi +jhF +yjP +jhF +jhF +iAv +iAv +iAv +iAv +iAv +pNm +vjW +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +pjJ +lCH +pjJ +pjJ +ien +hJZ +hJZ +fds +xtb +cdb +cdb +xtb +xtb +xtb +pMq +wfF +xtb +xtb +xtb +tfo +wmk +jLF +wmk +tfo +xtb +xtb +cdb +xtb +xtb +tDe +fjr +ugV +hNR +wPx +cEJ +mmI +mok +uAV +fxI +vHj +vxK +mok +ckz +rWO +pqk +ugV +jXQ +nQx +fjr +nOu +vnQ +uBx +xeg +uMO +ygy +vnQ +nXD +qfW +vXc +vXc +vXc +vXc +yiM +yiM +yiM +yiM +cXq +hDI +taH +taH +taH +jom +vXc +yiM +yiM +yiM +yiM +vXc +vXc +sVP +rMF +tSL +nuX +kBZ +kzT +rtf +vvH +wnM +ygn +hSP +tSL +tSL +tSL +rjO +syp +wBY +uDk +kNs +uDk +wBY +uDk +wBY +tSL +vpr +uDk +uDk +vyf +wIr +mHk +fFq +miD +wIr +iiB +aUB +xgH +dbR +dbR +xgH +fTP +ndC +xbR +wIr +mAk +fFq +fFq +fdz +fdz +wIr +wIr +fFq +fdz +fdz +fdz +rIp +wIr +isX +hOj +aft +pKl +ipx +tkf +fTP +aUB +hAj +wIr +mml +jLu +kTo +hlk +cpy +cpy +bMX +"} +(75,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +jsJ +tpR +epU +epU +hce +tKV +tKV +cNV +upm +tbG +vAT +jsJ +tpR +saC +saC +kwJ +tKV +ato +tKV +rPb +rPb +tKV +tiQ +pjt +gYT +gNH +dQn +etb +vqX +vqX +hDy +oBj +gsF +uOm +wYm +wYm +amK +saC +saC +saC +saC +bzC +iAv +aeO +hYe +xWm +bbP +edt +iAv +oKM +edt +oqg +edt +edt +ncZ +ngI +iAv +iAv +iAv +jEX +pEW +pEW +pEW +pEW +pEW +pEW +uQZ +pjJ +lCH +vjW +pjJ +clY +hJZ +hJZ +hJP +pGB +wbg +ahP +cdb +nnx +tfo +sff +ksd +osB +aMH +xtb +qYY +ksd +jLF +ggK +kik +cdb +ahP +wbg +wbg +wbg +pvn +fjr +ugV +hNR +wPx +pUS +xEZ +mVS +dMI +uUd +uUd +neT +adh +wSl +bAy +pqk +ugV +ibS +jXQ +iKF +wvF +ygF +mCW +ocn +qGK +beq +uxa +nXD +qfW +pgm +vXc +yiM +yiM +yiM +nfk +yiM +yiM +ejA +vFk +vFk +vFk +vFk +jai +jdR +jdR +oxr +yiM +yiM +yiM +vXc +cfJ +tSL +tSL +tSL +xQk +xQk +mIf +bUA +xQk +xQk +tSL +tSL +tSL +tSL +tSL +tSL +rep +hkz +tSL +xoK +jiU +oOw +aoG +tSL +dbR +pst +dbR +tSL +wIr +wIr +kwU +wIr +wIr +irF +aUB +bpN +uDT +pOs +poD +aUB +dCU +wIr +wIr +wIr +kwU +kwU +kwU +kwU +wIr +wIr +kwU +kwU +kwU +kwU +wIr +wIr +llH +aUB +bpN +uIk +oLa +fTP +aUB +iVi +wIr +wIr +jKP +kTo +eTL +hlk +cpy +cpy +bMX +"} +(76,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +jsJ +tpR +epU +epU +fZR +uHC +tKV +cNV +iub +tbG +rPb +jsJ +tpR +saC +kwJ +kwJ +tKV +ato +tKV +rPb +vAT +saC +tiQ +lII +vqX +mhQ +mOH +vqX +oDR +hDy +hDy +huO +cTG +uOm +wYm +wYm +dLm +xzf +saC +saC +saC +bzC +iAv +edt +hYe +ach +bbP +edt +iAv +fuM +sId +iJN +tWv +tWv +hGf +wqh +hbK +iAv +iAv +kdf +ciw +ciw +ciw +lPf +qqJ +jEX +pNm +pjJ +lCH +pjJ +pjJ +clY +clY +hJZ +hJZ +pGB +fjr +kJd +cdb +riC +jxz +txQ +kyC +gvT +uRf +xtb +hls +ksd +nBj +ggK +hHc +cdb +ipc +fjr +fjr +fjr +fjr +fjr +fjr +fUQ +mdS +tmm +eKN +naM +uAa +fto +uDF +mQo +uUd +fkL +dCd +ugV +fjr +fjr +fjr +ibS +nOu +oZa +beq +iaY +bGT +beq +oZa +nXD +qfW +tpD +qQi +qQi +qQi +qQi +sMa +yiM +yiM +jvy +trZ +trZ +trZ +trZ +trZ +trZ +trZ +twk +yiM +yiM +yiM +vXc +cfJ +tSL +tSL +bOZ +asL +lUv +cIi +vkh +kzT +kBZ +jrY +tSL +tSL +tSL +tSL +tSL +tSL +tSL +tSL +tSL +xQk +xQk +tSL +tSL +tSL +tSL +tSL +tSL +tOo +uFk +uFk +tOo +wIr +wIr +ktg +wiC +spJ +fTP +rZm +iiP +wIr +wIr +eXN +ldb +ldb +ldb +ldb +ldb +ldb +ldb +ldb +ldb +ldb +ldb +cqx +wIr +wIr +llH +aBt +oqp +qzQ +aUB +llH +wIr +wIr +alh +kTo +eTL +eTL +hlk +cpy +cpy +bMX +"} +(77,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +cfj +tpR +epU +epU +epU +hce +tKV +cNV +saC +rPb +rPb +jsJ +tpR +xuL +kwJ +ezU +tKV +ato +tKV +rPb +saC +saC +tiQ +xce +xce +lye +gGt +hDy +hDy +hDy +dcC +kdD +gsF +uOm +kaB +wYm +wXY +xzf +saC +saC +saC +bzC +iAv +lzZ +fWu +ach +vDO +edt +tkd +wqh +bpe +ikz +oTO +hGf +sOU +hGf +wqh +iAv +iAv +lkc +uSb +uSb +xqh +aea +cRk +alx +pNm +vjW +lCH +pjJ +pjJ +clY +clY +clY +clY +pGB +fjr +kJd +cdb +xFd +pRr +nBj +kyC +wsE +oIw +xtb +jDG +tfo +frl +iQY +jWg +cdb +ipc +fjr +fjr +fjr +cpy +bKf +fjr +nKZ +mdS +iLZ +fyA +dBn +neT +jhM +adh +xEZ +uUd +fkL +peU +ugV +xfD +cpy +fjr +fjr +nOu +vnQ +blM +xeg +qGK +blM +vnQ +nXD +qfW +yiM +yiM +yiM +yiM +yiM +sMa +yiM +vXc +gHQ +trZ +hLq +dVL +too +tFm +aHW +trZ +twk +yiM +yiM +vXc +vXc +cfJ +rMF +tSL +eDw +qNC +ygn +nxZ +kBZ +kBZ +kBZ +jrY +tSL +tSL +gbB +rMF +tSL +rMF +rMF +tSL +rMF +rMF +rMF +rMF +tSL +tOo +tOo +tSL +dGD +xdf +mPr +hFX +ofT +bYV +wIr +wIr +iLB +frT +kML +kkL +wIr +wIr +lYe +hXk +uFk +uFk +uFk +uFk +uFk +uFk +uFk +uFk +uFk +uFk +uFk +sPQ +mjh +wIr +wIr +kXm +vIn +aUB +hpr +wIr +wIr +thM +thM +kTo +eTL +hlk +hlk +cpy +cpy +bMX +"} +(78,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +epU +hce +tKV +saC +saC +rPb +rPb +jHS +sSx +aTH +ipJ +ipJ +whS +aEQ +tKV +rPb +saC +saC +tiQ +pjt +qAe +bbh +hmI +msi +mqU +hDy +ddH +hGV +lnV +uOm +jBy +uAm +xzf +saC +saC +saC +saC +uAm +iAv +iNw +bpe +ach +vDO +edt +tkd +edt +bpe +djY +ach +prz +ach +rDQ +aRT +iAv +iAv +qsH +dMt +goG +qsH +iAv +iAv +alx +pNm +vjW +hdu +nCa +nCa +yhK +yhK +yhK +iSf +gew +nQx +kJd +xtb +xtb +xtb +pMq +wfF +xtb +xtb +xtb +xtb +xtb +pMq +wfF +xtb +xtb +ipc +fjr +fjr +cpy +cpy +cpy +xDz +bAn +kJd +pXK +lJr +jmm +tYT +lMg +eLl +qYa +kcW +wsA +wlk +fjr +fjr +cpy +cpy +fjr +nOu +pQE +pQE +kTY +pXf +pQE +pQE +nXD +qfW +yiM +yiM +iBY +sno +yiM +sMa +vXc +umf +gHQ +trZ +ajz +nGX +viu +sOD +nsJ +agG +twk +yiM +yiM +vXc +vXc +hlw +rMF +tSL +tSL +ipG +cyF +scX +egM +nfr +xqb +tSL +tSL +rMF +gBO +gBO +gBO +gBO +gBO +gBO +gBO +gBO +gBO +gBO +vZz +uFk +uFk +uFk +xdf +mPr +mPr +hFX +hFX +sFW +czY +wIr +wIr +cOs +qvn +wIr +wIr +kep +iZP +mPr +mPr +mPr +mPr +mPr +nax +nax +nax +nax +mPr +mPr +mPr +mPr +ofT +tOo +wIr +nKL +gkL +wMS +nKL +wIr +hlk +mmf +kTo +kTo +kTo +hlk +cpy +cpy +cpy +bMX +"} +(79,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +epU +hce +saC +saC +saC +saC +rPb +tKV +tpR +qDH +epU +epU +epU +hce +tKV +saC +saC +saC +tiQ +pjt +gYT +gNH +hmI +hDa +mqU +hDy +sQk +gsF +wYm +uOm +uAm +uAm +klW +saC +saC +saC +saC +uAm +lLA +aew +mcI +eKV +qcM +oQd +ijg +pux +poP +gkh +jpp +gpd +jFM +gpd +ayz +mfT +nlL +eLU +faT +iHu +mjF +xlC +qsH +rxt +gWI +pEW +pEW +pEW +pEW +ixi +ixi +bgL +sjY +pGB +jDO +aLx +wbg +wbg +irc +prw +pCI +wHu +wbg +ahP +qDL +mLD +oCP +pfo +xCV +qDL +tDe +fjr +cpy +cpy +cpy +cpy +cpy +dBQ +aLx +sMH +wbg +sMH +awR +vWO +wbg +wbg +bpm +hki +tax +fjr +cpy +cpy +cpy +fjr +nOu +vnQ +kfP +uPy +uMO +xNB +vnQ +nXD +qfW +yiM +yiM +qCY +iqQ +yiM +puY +vXc +umf +gHQ +trZ +xgZ +nsJ +lxd +nsJ +bGn +trZ +twk +yiM +vXc +vXc +vXc +wYa +oCI +gbB +tSL +tSL +ujN +tSL +tSL +xQk +tSL +tSL +rMF +fbL +yiM +yiM +vXc +vXc +vXc +umf +umf +umf +vXc +vXc +vZz +nax +nax +nax +mPr +mPr +mPr +mPr +hFX +hFX +qEV +jDS +fdz +drP +oFB +fdz +jDS +xzx +tWT +mPr +tNc +gUj +gUj +tZF +iCb +nax +nax +nax +mPr +mPr +mPr +mPr +mPr +ofT +uFk +uFk +sDk +uFk +tOo +hlk +hlk +pFe +kTo +kTo +kTo +hlk +cpy +cpy +cpy +bMX +"} +(80,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +epU +mqX +saC +saC +saC +saC +saC +saC +vcZ +bxF +ufG +ufG +ufG +bMx +tiQ +tiQ +tiQ +saC +tiQ +pjt +qAe +gNH +hmI +vqX +mqU +hDy +rKU +xHT +fKy +uOm +akN +umD +saC +saC +saC +saC +hor +lko +lLA +edt +jUw +cxi +dlG +pss +jUY +oqg +pqE +eKV +eOH +tgO +sTF +edt +uyS +dMt +iSj +myz +dzr +jUo +kEj +yjt +qsH +gWI +gWI +oUq +oUq +ptl +ptl +oUq +oUq +oUq +oUq +oUq +jXQ +iKF +iKF +iKF +iKF +iKo +fjr +fjr +fjr +kJd +cqc +xCV +uLw +vlX +xCV +cqc +ipc +fjr +cpy +cpy +cpy +cpy +fjr +lRi +ugV +ugV +ugV +xyU +tSF +ugV +ugV +pqk +tIQ +ugV +ugV +gUT +cpy +cpy +cpy +fjr +nOu +vnQ +lzl +xeg +qGK +lzl +vnQ +nXD +qfW +yiM +yiM +qCY +uie +yiM +yiM +yiM +vXc +gHQ +trZ +rSP +hjw +viu +hjw +xFV +pZk +twk +yiM +vXc +vXc +vXc +wYa +umf +oCI +rMF +tSL +rMF +tSL +tSL +rMF +tSL +rMF +fbL +yiM +yiM +yiM +yiM +vXc +vXc +vXc +umf +vXc +vXc +yiM +vZz +nax +nax +mPr +mPr +mPr +mPr +mPr +mPr +hFX +qEV +jDS +fdz +xgH +tkf +fdz +jDS +xzx +tWT +mPr +tNc +nax +nax +nax +nax +nax +nax +nax +mPr +mPr +mPr +mPr +mPr +mPr +mPr +kOa +jyM +nax +ndG +ouj +hlk +vDj +kTo +kTo +kTo +hlk +cpy +cpy +cpy +bMX +"} +(81,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +oLU +yli +qDH +qDH +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +rPb +rPb +rPb +rPb +saC +saC +saC +saC +tiQ +xce +bhi +gNH +vFF +joc +xce +hDy +kdD +keh +wRV +cXo +wYm +gyR +saC +saC +saC +dKH +ary +uAm +lLA +ntL +edt +tdf +cOx +iAv +iAv +cAk +fcl +oKM +xsu +vSW +wqh +aRT +iAv +iAv +iAv +qsH +dMt +rXl +qsH +iAv +iAv +iAv +oUq +oUq +fDc +hzI +rBN +nNo +oUq +oUq +oUq +fjr +rxI +fjr +fjr +fjr +ugV +ugV +fjr +fjr +fjr +kJd +cqc +xCV +uNt +vlX +xCV +cqc +ipc +fjr +cpy +cpy +cpy +fjr +fjr +hNR +ugV +vvZ +hJg +fVX +vgK +aYU +hJg +etB +mSE +fjr +fjr +fjr +prs +cpy +fjr +fjr +mmt +vnQ +hub +xeg +qGK +lzl +vnQ +nXD +qfW +yiM +yiM +qCY +uie +yiM +yiM +yiM +yiM +gHQ +trZ +mcD +vRC +ykp +nsJ +qwP +pZk +twk +yiM +yiM +vXc +vXc +wYa +vXc +umf +oCI +tCZ +gBO +gBO +gBO +gBO +gBO +fbL +yiM +yiM +yiM +yiM +yiM +yiM +vXc +vXc +vXc +yiM +yiM +yiM +vZz +nax +nax +mPr +mPr +mPr +mPr +mPr +mPr +mPr +qEV +jDS +fdz +xgH +tkf +fdz +jDS +xzx +tWT +mPr +mPr +iCb +nax +nax +nax +nax +nax +mPr +mPr +mPr +siX +gUj +gUj +qNr +mPr +tKB +nax +nax +ndG +gmu +aEk +lvi +kTo +eTL +eTL +hlk +cpy +cpy +cpy +bMX +"} +(82,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +rDj +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +epU +saC +saC +saC +saC +saC +saC +tiQ +mRU +vqX +gNH +hmI +mVg +qBr +hDy +kdD +keh +vEx +dxp +wYm +wYm +saC +saC +aBE +iji +dYg +uAm +uAm +lLA +lLA +iAv +iAv +iAv +iAv +dMt +qiT +jmo +iAv +iAv +avq +iAv +iAv +iAv +iAv +jaE +duV +bjb +ahV +ahV +cpi +ahV +txW +kWS +kWS +kXY +kXY +hzI +nNo +oUq +oUq +fjr +fjr +fjr +fjr +ugV +ugV +ugV +ugV +fjr +rxI +kJd +cqc +jdi +uNt +vlX +jdi +cqc +ipc +fjr +fjr +cpy +fjr +hxy +iKF +kdo +vvZ +yjp +sjy +sjy +sjy +sjy +sjy +sjy +evQ +meX +fjr +fjr +fjr +fjr +fjr +nVN +gmH +vnQ +lzl +xeg +qGK +jAs +vnQ +nXD +qfW +yiM +yiM +bYS +xLY +yiM +yiM +yiM +yiM +gHQ +trZ +nbP +sOD +bCK +sOD +hrb +pZk +twk +yiM +yiM +yiM +vXc +wYa +vXc +vXc +vXc +tCZ +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +yiM +vXc +vXc +vXc +umf +vXc +vXc +yiM +yiM +vZz +nax +mPr +mPr +mPr +mPr +mPr +mPr +mPr +mPr +qEV +jDS +fFq +qEk +tkf +fdz +jDS +xzx +tWT +mPr +nax +bjX +nXX +nXX +nXX +nXX +wko +mPr +mPr +mPr +mPr +mPr +mPr +mPr +nax +pCv +nax +mPr +ndG +gmu +hlk +nBl +kTo +eTL +hlk +hlk +cpy +cpy +cpy +bMX +"} +(83,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +epU +fEd +bMx +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +mFY +gYT +gNH +sxD +dqC +qBr +hDy +kdD +gsF +xVs +mvl +odB +wYm +wYm +saC +gNm +qfa +kdD +hao +uAm +uAm +nzR +bzC +bzC +bzC +iAv +dMt +dMt +iAv +iAv +lLA +lLA +xUq +xUq +iAv +djT +ahV +nMl +wrc +mjF +mGb +uJd +aNd +wZi +iej +kXY +nFc +rqE +kXY +pkT +oUq +oUq +oUq +fjr +fjr +fjr +ugV +ugV +ugV +ugV +ugV +rxI +kJd +qDL +jdi +xeh +rLf +xCV +qDL +ahP +meX +fjr +fjr +fjr +jDO +fjr +ugV +kJd +sjy +sjy +day +mAK +vkr +eok +sjy +sjy +ahP +hJg +hJg +hJg +hJg +ftU +pVv +hBZ +pQE +jAs +eUL +bHV +jAs +pQE +pTz +vSN +krB +krB +krB +krB +krB +hZz +yiM +yiM +gHQ +trZ +qzu +aPt +hjw +aPt +hjw +trZ +twk +yiM +yiM +vXc +vXc +tDd +rXb +rXb +rXb +bPA +rXb +rwE +rwE +rwE +rwE +rwE +rwE +rwE +wLh +vXc +vXc +umf +umf +umf +umf +vXc +vXc +yiM +vZz +nax +nax +mPr +mPr +hFX +hFX +hFX +mPr +mPr +qEV +wIr +wIr +svZ +iiB +wIr +wIr +xzx +kfb +mPr +bjX +yhj +ylo +ylo +ylo +ylo +beh +wko +mPr +mPr +mPr +mPr +mPr +nax +nax +pCv +nax +mPr +ndG +eDq +hlk +txZ +kTo +kTo +hlk +cpy +cpy +cpy +cpy +bMX +"} +(84,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +epU +xnA +bMx +tKV +tKV +cNV +saC +saC +saC +saC +saC +saC +rPb +rPb +rPb +saC +saC +saC +saC +saC +tiQ +mFY +vqX +jIA +ksr +etb +mFY +hDy +saC +gsF +wYm +vvG +wYm +wYm +wYm +tdp +bwG +mfy +hbV +kdD +tpC +saC +saC +saC +saC +bzC +bzC +iAv +iAv +iAv +gYc +lLA +lLA +lLA +xUq +vEz +ahV +bjI +ahV +ahV +qLF +gcU +ctk +rzU +ptl +sTd +kXY +nFc +dwI +kXY +hzI +oUq +oUq +rxI +fjr +fjr +fjr +ugV +ugV +vvZ +hJg +hJg +hJg +yjp +beB +beB +hQB +gpJ +beB +wrC +wrC +xXR +hJg +hJg +meX +dBQ +fjr +vvZ +uuy +sjy +rqM +qmh +jQk +cXF +fWI +nAp +sjy +sjy +sjy +sjy +sjy +sjy +sjy +sjy +sjy +kqb +kqb +yjw +pGT +kqb +kqb +lVp +lVp +hiO +aeZ +wRR +lVp +lVp +aHH +hZz +yiM +gHQ +trZ +pZk +trZ +pZk +trZ +pZk +trZ +twk +vXc +vXc +vXc +uJi +psW +psW +psW +psW +tCZ +psW +psW +psW +psW +psW +psW +psW +psW +brW +psW +psW +psW +psW +psW +psW +psW +psW +psW +vZz +hEV +hEV +hEV +hEV +hEV +jlb +hFX +hFX +mPr +qEV +wIr +wIr +xaz +iiB +wIr +wIr +xzx +tWT +mPr +aPe +ylo +ylo +myK +aqD +ylo +ylo +hdG +mPr +mPr +gsX +hEV +hEV +hEV +hEV +mRR +hEV +hEV +tOo +hlk +hlk +tUE +kTo +fYf +hlk +cpy +cpy +cpy +cpy +bMX +"} +(85,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tpR +fEd +bMx +tKV +tKV +cNV +cNV +saC +saC +saC +saC +wLp +lpL +lpL +lpL +lpL +lpL +saC +saC +tiQ +saC +tiQ +tiQ +nJo +hZl +vqX +hIS +bOP +hDy +saC +saC +wYm +qaL +sZC +sZC +sZC +nSY +sZC +sZC +mxS +tEF +lvH +lZD +erU +saC +saC +saC +saC +saC +saC +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +iAv +oUq +kSu +nMX +rmA +nMX +nMX +hzo +oUq +oUq +rxI +rxI +fjr +ugV +ugV +ugV +kJd +beB +beB +beB +beB +beB +xSi +pkv +mii +ccp +wrC +wrC +wrC +wrC +wrC +ipc +jDO +fjr +kJd +sjy +sjy +wKn +fbR +urM +xxs +uDb +lCX +sjy +sjy +lxc +pan +wTp +fsW +nhY +nhY +sjy +gkK +gmg +lkj +lxL +dmv +cNF +lVp +lVp +qNx +tWD +tWD +fPb +lVp +lVp +nwN +vXc +gkB +hLW +hLW +hLW +hLW +hLW +hLW +hLW +gTs +vXc +vXc +uJi +rMF +jmG +jmG +rMF +rMF +jmG +jmG +rMF +rMF +jmG +jmG +rMF +rMF +jmG +rPU +iTm +iTm +jmG +rMF +rMF +jmG +jmG +rMF +rMF +jmG +jmG +tOo +tOo +jmG +jmG +pqR +jlb +hFX +mPr +qEV +jDS +fdz +xgH +tkf +fFq +jDS +xzx +tWT +mPr +uXp +ylo +nYs +yfu +nXO +aqD +ylo +hdG +mPr +gsX +tOo +jas +jas +jas +pZN +uJg +pZN +jas +jas +jas +jas +eHb +wXO +tzK +hlk +cpy +cpy +cpy +cpy +bMX +"} +(86,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +vcZ +bMx +tKV +cNV +cNV +cNV +mKx +mKx +saC +saC +wLp +ghF +ghF +ghF +ghF +ghF +gpS +ghF +ghF +ghF +saC +saC +tiQ +xYU +xYU +xYU +tiQ +mRU +tiQ +saC +saC +saC +wYm +wYm +wXY +qKi +tdp +wYm +wYm +wYm +wYm +wYm +wYm +uOm +hfb +saC +saC +saC +saC +saC +saC +saC +saC +saC +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oUq +oBK +hmK +aFs +igc +igc +wOv +oUq +oUq +oUq +ugV +ugV +ugV +ugV +ugV +kJd +beB +hZf +kZU +cKB +ekx +qiK +aBo +dbh +bih +wrC +sNx +wrt +pGF +wrC +ipc +jDO +vvZ +qxe +sjy +sjy +sjy +mHN +sjy +tpa +tpa +sjy +sjy +aIf +kRb +kBk +iJu +uDs +jUg +lCX +sjy +cNF +oud +dbQ +lxL +nTD +sIp +lVp +akT +tYB +oXa +awj +tkj +obo +lVp +nwN +vXc +vXc +yiM +yiM +yiM +yiM +yiM +yiM +vXc +vXc +vXc +uJi +rMF +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +uKS +ild +ild +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +tWT +hFX +mPr +qEV +jDS +fdz +xgH +tkf +fdz +jDS +xzx +ftI +bwF +aPe +oIe +yfu +yfu +yfu +uPC +ylo +hdG +jAd +ndG +jas +jas +ljK +jas +ldU +vjr +mNk +jas +jgt +xwB +jas +jas +tWJ +jas +jas +cpy +cpy +cpy +cpy +bMX +"} +(87,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jsJ +tKV +tKV +cNV +cNV +cNV +cNV +eoN +jon +vhn +vhn +vhn +oVs +oVs +oVs +oVs +oVs +oVs +oVs +oVs +saC +saC +saC +tiQ +fJz +gof +xfw +tiQ +tiQ +tiQ +saC +saC +saC +saC +wYm +wYm +wYm +tdp +wYm +wYm +wYm +wYm +wYm +wYm +uOm +wXY +aOu +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +oUq +jpl +uBC +cio +jpl +eQq +psa +oUq +oUq +xzi +bJN +jbn +kXY +kXY +lhZ +oUq +oUq +ugV +ugV +ugV +ugV +ugV +ugV +kJd +beB +sLa +kZU +xiJ +xiJ +xiJ +hiR +dbh +wqp +qIR +pJX +htU +npH +wrC +ipc +jDO +kJd +sjy +sjy +eIt +uaR +fWz +sSP +vgD +sbK +sbK +sjy +sjy +kWo +lYZ +wIO +vbR +hSf +bxJ +sjy +sdb +xYx +oLd +wob +nTD +eMP +lVp +akT +vAn +yca +yca +wSt +mck +kCI +nwN +vXc +gsP +qtN +qtN +qtN +vKO +yiM +yiM +yiM +vXc +uJi +rMF +jmG +jmG +unS +uKE +jwM +jwM +sOR +oVk +gwP +tnM +wHU +woq +qsC +ggC +jmG +uKS +ild +ild +jmG +bwl +hYd +unS +jwM +xTe +sHQ +qvN +gwP +buz +eUZ +dUW +dUW +jmG +tWT +mPr +mPr +qEV +jDS +fFq +qEk +oLa +fdz +jDS +xzx +tWT +qbG +aPe +oIe +yfu +yfu +yfu +uuC +ylo +hdG +mPr +vxi +jas +seS +vpe +aAI +mdN +wwc +mdN +aAI +ddb +eso +xPI +jas +nQu +tms +jas +cpy +cpy +cpy +cpy +bMX +"} +(88,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +qAx +rPb +rPb +cNV +cNV +cNV +cNV +ghF +xZb +lpL +lpL +jam +mPX +mPX +mPX +lpL +mPX +mPX +lpL +saC +saC +saC +saC +tiQ +gPR +gPR +gPR +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +wYm +wYm +saC +wYm +wYm +wYm +wYm +wYm +wYm +uOm +wYm +hfb +saC +saC +saC +saC +saC +saC +jCX +saC +saC +saC +pUe +mQl +pns +gpC +exz +vFi +vbr +umi +opS +fer +hzI +har +jbn +awI +kXY +kWS +kWS +ptl +hJg +hJg +hJg +hJg +hJg +hJg +ahP +beB +sLU +aBM +tXl +aBQ +uVE +hiR +xiJ +wqp +wrC +nSP +gbL +dsr +wrC +jBU +mNa +nKm +sjy +xYV +wxK +qGC +azl +qGC +mqH +mqH +wxK +sjy +sjy +gzK +sjy +eru +sjy +gzK +sjy +sjy +eMP +xYx +oLd +wob +nZd +gkK +lVp +hLt +jfO +yca +owg +jfO +hRH +xjW +nwN +vXc +uWD +xkO +xkO +xkO +weQ +yiM +aOi +yiM +vXc +wKQ +jmG +jmG +ubJ +uok +uKS +uXO +ild +jwM +ild +eHF +iXy +qQr +tdz +sLn +mgB +jmG +vVS +ild +ild +jmG +bwl +iSr +vVS +afI +nQk +lFi +qvN +eHF +buz +eUZ +jwM +nBP +jmG +tWT +mPr +mPr +qEV +jDS +fdz +qEk +oLa +fdz +jDS +xzx +gXV +nax +glO +vOb +nYs +yfu +yfu +exI +ylo +nJr +mPr +ndG +jas +cnJ +vpe +aAI +mdN +wwc +mdN +aAI +nkf +vpe +iNA +jas +nQu +bWv +jas +cpy +cpy +cpy +cpy +bMX +"} +(89,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +kQf +kQf +dOa +vLL +wmM +dOa +tvs +xZb +mPX +mPX +jam +mPX +mPX +mPX +lpL +mPX +mPX +lpL +saC +saC +saC +saC +tiQ +wDQ +aci +nAy +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +jwR +qKi +wYm +wYm +wYm +wYm +uOm +wYm +wYm +cRx +saC +saC +saC +saC +eRd +kwg +kwg +saC +kwg +mZe +aYd +clQ +kwg +kwg +kwg +mZe +kXY +opS +vGS +kwg +iZS +wHB +kWn +sTf +kXY +kWS +oUq +beB +tHy +tHy +tHy +tHy +beB +beB +beB +sMY +rZk +mwV +mwV +dbh +soU +xiJ +bih +wrC +wrC +wrC +rqk +wrC +yev +mJS +kJz +sjy +aYt +jpc +sAU +den +xDP +awK +mqH +wxK +sjy +lJZ +hSf +kiw +wAS +gsT +xxs +eBd +sjy +iYQ +asF +oLd +wTr +tfi +ydN +lVp +eTf +wSt +pni +yca +gXT +aZy +iNY +nwN +vXc +uWD +xkO +iis +jhi +qJN +vXc +vHN +yiM +vXc +wKQ +jmG +ubJ +ubJ +ubJ +kyB +ldC +ldC +ldC +nbn +kaV +izz +yfk +ild +jwM +qsr +jmG +vVS +ild +rGD +jmG +ygW +buz +vVS +ild +lte +buz +jwM +jwM +lte +lte +fhu +brk +jmG +tWT +mPr +mPr +qEV +jDS +fdz +qEk +oLa +fdz +jDS +xzx +eaR +lty +aPe +ylo +ylo +tDZ +myK +ylo +ylo +tyc +xSQ +vDG +jas +kLM +eso +jas +mNk +wwc +mdN +jas +pHM +eso +iNR +jas +nQu +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(90,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +oFS +kQf +kQf +opK +kQf +kQf +dOa +ghF +xZb +mPX +mPX +jam +lpL +lpL +lpL +vzr +jZf +jZf +jam +dew +saC +saC +saC +saC +gof +tVC +oZI +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +saC +saC +saC +kHH +xCi +xCi +cfV +cfV +xCi +nTd +xCi +xCi +saC +saC +saC +saC +gDO +kwg +mOI +pcH +pcH +pcH +opR +pco +vGU +pcH +sGF +pcH +opR +nMX +oyI +ugz +pcH +pcH +bEM +vax +uCP +kXY +qjp +oUq +uXS +bmT +fPv +fPv +bmT +eDo +beB +jXW +uGt +rSK +tXl +aBQ +uVE +soU +xiJ +bih +lUb +wrC +hUQ +dsr +wrC +adh +nJm +uUd +sjy +aYt +qGC +eSx +dsA +mqH +asz +xDP +tsU +pCf +ndb +vbX +vbX +vZy +uDb +xxs +bUy +sjy +mRG +fJq +gZL +lxL +pli +iEE +lVp +kUA +jfO +jfO +yca +jfO +kas +iNY +nwN +vXc +uWD +xkO +xkO +xkO +cqs +vXc +vHN +yiM +vXc +wKQ +jmG +ubJ +ubJ +czO +jwM +ild +ild +quD +ild +uKS +ild +ild +ild +jwM +jwM +jmG +uKS +jwM +jwM +jmG +gwP +jwM +uKS +ild +tnM +wHU +woq +jwM +jwM +ild +ild +dco +jmG +tWT +mPr +mPr +qEV +jDS +qes +qEk +tkf +fFq +jDS +kuA +tWT +nax +uvg +cfT +ylo +ylo +ylo +ylo +oSA +jnF +mPr +ndG +jas +eVO +fhl +jZP +xcX +ueg +xcX +jZP +kwj +kwj +cxo +mJE +nQu +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(91,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +loy +lFg +jJT +jJT +hoo +cya +cKp +ghF +xZb +mPX +mPX +jam +lpL +lpL +vzr +vzr +mPX +mPX +lpL +mPX +mPX +jmf +ghF +vlq +gof +tVC +oZI +pqO +saC +saC +saC +saC +lEK +wDI +tiQ +tiQ +tiQ +saC +hfG +kdD +kjO +saC +saC +gXw +raE +kdD +kdD +saC +saC +saC +jpl +gDO +kwg +jkJ +kwg +hpZ +meY +kWn +bXe +kWn +saC +saC +saC +vYO +fRY +opS +gNU +hzI +kXY +biu +qsY +uCP +kwg +uln +fvz +xUV +xDu +xDu +xDu +raI +xUV +uRr +dAu +xiJ +dbh +dbh +xiJ +xiJ +soU +xiJ +bWE +bih +iru +pJX +efH +hYx +bUf +mLO +adh +sjy +ldK +uUj +kUo +sjy +oja +lpY +qGC +xCR +sjy +bUy +bUy +kvH +eBd +eBd +woS +sPn +sjy +emj +lxL +hnk +xGf +xGf +oFn +dOk +vPH +yca +jfO +jfO +gLg +lJM +lVp +nwN +vXc +uWD +xkO +kHB +jhi +qJN +vXc +eLG +yiM +vXc +wKQ +jmG +jmG +dUW +jwM +bYy +oxq +ild +ild +ild +vVS +ild +ild +ild +ild +jwM +iTm +uKS +jwM +ild +iTm +eHF +ild +xwt +lte +ild +ild +lte +lte +jwM +ild +gwP +psF +jmG +tWT +mPr +mPr +qEV +wIr +wIr +vgR +oFB +wIr +wIr +vCj +tWT +nax +nax +uvg +bMB +qRB +oJU +jhe +jnF +mPr +mPr +ndG +jas +eVO +vjr +jas +mdN +wwc +mNk +jas +jas +jas +akO +jas +nQu +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(92,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +bCI +dZH +dFw +dFw +dFw +aQK +cKp +ghF +xZb +mPX +mPX +vzr +vzr +saC +saC +vzr +lpL +lpL +vcW +jiR +jiR +hln +ggN +oVt +pWn +tVC +oZI +pqO +saC +lmY +fJz +aci +bZx +trX +xHA +wni +tiQ +tiQ +exW +oBn +tiQ +saC +saC +saC +uhx +pwX +pwX +qjG +saC +oUq +jpl +gDO +iZS +jkJ +oID +qPB +jpl +eQq +oUq +bUN +saC +saC +saC +saC +saC +oUq +mVm +iFr +kXY +oIj +bop +rmJ +pcH +vGU +wZi +bca +lxN +lxN +lxN +fJg +mDe +ljt +wEg +cxL +mMo +qYg +qYg +cxL +qMD +dbh +dDb +wEg +bDo +rvt +oMe +iVM +uUd +mOE +adh +sjy +sjy +sjy +sjy +sjy +lhK +nKo +mqH +ygH +sjy +sjy +sjy +sjy +sjy +sjy +sjy +sjy +sjy +kqb +qRz +bTT +srJ +lxL +lKR +wpW +fgz +yca +yca +wSt +tjV +aUi +lVp +nwN +vXc +uWD +xkO +xkO +xkO +weQ +vXc +vXc +yiM +vXc +oCI +rMF +jmG +jmG +jwM +cZQ +jVH +ild +gWb +xJd +lNf +ldC +ldC +ldC +ldC +iqw +dXi +haY +ldC +ldC +dXi +ldC +ldC +uqa +ldC +ldC +ldC +ldC +ldC +xcF +ldC +jtg +liN +jmG +tWT +mPr +mPr +qEV +wIr +wIr +drP +oFB +wIr +wIr +xzx +tWT +nax +nax +nax +nax +nax +mPr +mPr +mPr +mPr +mPr +ndG +jas +eqd +aNr +aAI +mdN +wwc +mdN +aAI +pbC +eso +vpe +jas +bWv +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(93,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +phV +dFw +dFw +dFw +uEd +cKp +sIL +xZb +giS +lpL +vzr +saC +saC +saC +kvP +vzr +lpL +dPr +giS +lpL +jmf +ghF +pwX +tkn +qjG +oZI +pqO +dfb +ujg +mEL +qTB +rBm +nAy +bZx +gof +gof +tiQ +cup +seF +tiQ +saC +saC +saC +yaj +qjG +qjG +qjG +pwC +oUq +kkO +tsl +iZS +jkJ +wrO +jpl +jpl +oUq +oUq +oUq +saC +saC +saC +saC +oUq +oUq +mVm +ciX +kXY +pzz +eTG +sjU +kXY +hHz +oUq +uXS +bmT +fPv +bmT +jNp +eDo +beB +pSl +pJp +pwK +wuB +yed +xwR +vLp +vPt +eKz +kDI +wrC +lVi +tOC +wrC +uUd +mOE +uUd +sjy +sjy +sjy +sjy +sjy +lhK +azl +mnU +icX +sjy +fuH +lCX +kVe +bub +hsZ +cNE +bWo +sjy +pRl +lxL +hnk +lxL +lxL +lKR +dOk +fVD +jfO +xXo +lNs +jfO +jBX +lVp +nwN +vXc +hxn +eOE +eOE +eOE +upZ +vXc +yiM +yiM +vXc +vXc +oCI +rMF +jmG +upr +uLE +jnB +ild +uLE +lpH +uKS +ild +whE +weM +mbO +ild +jmG +vVS +ild +jwM +jmG +xDR +xPa +xPa +xPa +xPa +xPa +iwF +jwM +ild +lte +bsc +slY +jmG +tWT +mPr +mPr +qEV +jDS +fFq +xgH +tkf +fFq +jDS +xzx +tWT +mPr +nax +nax +nax +nax +mPr +mPr +mPr +mPr +mPr +bnd +jas +sOz +vpe +aAI +mdN +wwc +mdN +aAI +frX +vpe +tCg +jas +bWv +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(94,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +phV +dFw +dFw +jmL +jXy +dOa +mKx +xZb +mPX +mPX +vzr +saC +saC +saC +saC +vzr +vzr +dPr +mPX +mPX +jmf +ghF +pwX +tkn +qjG +oZI +pqO +dfb +ujg +lEK +tVC +oZI +vdW +rBm +bZx +gof +gof +gTO +evt +saC +saC +saC +kjQ +yaj +qjG +qjG +urH +pwC +oUq +jpl +nyr +lbZ +cjt +wrO +jpl +oUq +oUq +oUq +oUq +oUq +saC +oUq +oUq +oUq +oUq +oUq +xLT +oeU +kXY +aYd +kXY +kWS +jHW +oUq +beB +tHy +tHy +tHy +ent +beB +beB +beB +beB +beB +beB +beB +beB +beB +eao +tia +wrC +sgT +sgT +sgT +sgT +uUd +mOE +uUd +sjy +tpJ +aPN +tIW +sjy +lhK +azl +qGC +uEM +sjy +xOF +bRP +xxs +xxs +szY +wYE +bwI +siL +oFn +xGf +hnk +lxL +xGf +oFn +lVp +gKy +yca +xXo +lNs +yca +kas +iNY +nwN +vXc +yiM +yiM +yiM +yiM +yiM +vXc +yiM +vXc +vXc +vXc +vXc +wKQ +jmG +biN +lte +hib +ild +lte +lte +uKS +jwM +ild +ild +ild +tkm +jmG +uKS +jwM +jwM +jmG +xDD +xDR +xPa +xNi +xPa +iwF +xDD +jwM +amY +eQc +wXE +cav +jmG +tWT +mPr +hFX +qEV +jDS +fdz +xgH +tkf +fdz +jDS +xzx +tWT +mPr +nax +nax +nax +mPr +mPr +mPr +mPr +mPr +eyU +mjz +jas +eAp +vQm +jas +mNk +vjr +mdN +jas +aGH +oHC +bhw +jas +tms +nQu +jas +cpy +cpy +cpy +cpy +bMX +"} +(95,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +qQj +tYY +oqZ +oqZ +chP +pSO +dOa +mKx +xZb +mPX +mPX +saC +saC +saC +saC +saC +saC +vzr +dPr +mPX +mPX +jmf +ghF +vlq +tkn +tVC +oZI +pqO +teQ +ujg +gqP +drA +iEi +iEi +iEi +dhi +xYD +kry +irE +evt +saC +saC +saC +tzM +yaj +qjG +qjG +qjG +tzM +oUq +oUq +gYv +nMX +pco +uME +oUq +oUq +oUq +oUq +gZc +rEs +oUq +oUq +oUq +rwr +lyt +oUq +gIz +hzI +kXY +aYd +nPV +cnk +oUq +oUq +wbg +wbg +wbg +wbg +duW +wJM +ahP +yjp +wrC +wrC +ppJ +urr +urr +wrC +eKU +cdT +xFY +sgT +wUL +alI +sgT +adh +mOE +uUd +sjy +lun +kRZ +sAU +qGC +jpc +azl +qGC +wxK +sjy +sWI +dZx +uDb +eUh +uDb +uDb +lCX +siL +lJT +pli +oLd +ndf +xGf +oFn +lVp +sRj +yca +gXz +eAC +yca +mck +iNY +nwN +vXc +vXc +yiM +yiM +yiM +yiM +vXc +vXc +vXc +vXc +vXc +yiM +wKQ +jmG +oQN +lte +xUh +cDQ +lte +lYB +vVS +jwM +gwP +ild +xJd +jwM +jmG +wZt +jwM +nPc +jmG +xDD +xDD +jmG +jmG +jmG +dgR +dgR +jmG +jwM +ora +ild +jmG +jmG +tWT +mPr +hFX +qEV +jDS +fdz +qEk +oLa +fdz +jDS +xzx +tWT +mPr +mPr +nax +mPr +mPr +mPr +mPr +mPr +dxE +oaN +jas +jas +jas +jas +jas +pZN +uJg +vOy +jas +jas +jas +jas +jas +jas +dtF +jas +cpy +cpy +cpy +cpy +bMX +"} +(96,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +kQf +kQf +ydu +gYR +dOa +dOa +mKx +dxQ +jam +jam +saC +saC +saC +saC +saC +saC +saC +nxe +jZf +jZf +kQV +mKx +saC +tkn +tVC +oZI +pqO +dfb +lmY +erW +lEK +trX +lyN +pFm +sXI +mYC +gof +gTO +buc +saC +saC +saC +tzM +yaj +qjG +qjG +qjG +tzM +saC +saC +afL +der +fHT +nXT +eQq +oUq +oUq +eXm +bhE +brE +vWi +jjx +cnI +nvh +aSc +oUq +oUq +iVA +nNo +sTd +xwc +ajR +oUq +oUq +pGh +ugV +ugV +ugV +fjr +jDO +kJd +wrC +wrC +qOq +qnP +mSb +xgt +uSv +pJX +uHg +pwe +wuD +jPw +qgr +sgT +adh +uAa +uUd +sjy +ldK +mqH +dsv +pcQ +sAU +asz +xDP +tsU +eUe +ndb +jQk +sLk +nel +eUh +xxs +kYv +sjy +kqb +uVy +itG +vDT +gaS +kqb +lVp +giT +yca +gXz +eAC +jfO +mck +iNY +nwN +yiM +vXc +vXc +umf +umf +vXc +vXc +vXc +vXc +yiM +yiM +yiM +wKQ +jmG +qxm +lte +hcc +wsT +lte +iSr +liN +ild +eHF +ftK +pMs +jEW +jmG +nnB +fvN +ful +jmG +xDD +xDD +jmG +jmG +jmG +xDD +xDD +jwM +aTm +aEx +wXE +jmG +tOo +xdf +hFX +hFX +qEV +jDS +fFq +mzt +iiB +fdz +jDS +xzx +tWT +mPr +mPr +mPr +mPr +mPr +mPr +mPr +gsX +rot +jas +jas +rXu +dLX +phy +gdp +mdN +vjr +mNk +bXb +rrl +uph +tRg +jas +jHP +cHX +jas +jas +jas +cpy +cpy +bMX +"} +(97,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +pED +sPE +dOa +dOa +dOa +dZs +xsa +xZb +mPX +mPX +saC +saC +saC +saC +saC +saC +saC +iUO +mPX +mPX +jmf +gpS +saC +tkn +tVC +oZI +saC +saC +lmY +lmY +ujg +ujg +ujg +lmY +lmY +aID +fKk +lmY +saC +saC +saC +pwC +qjG +yaj +qjG +qjG +pwC +saC +saC +saC +hXt +saC +jkJ +iEa +eQq +oUq +oUq +eVF +ltO +kXY +xZE +kXY +xZE +kXY +gQY +hkN +oUq +oUq +oUq +oJC +oUq +oUq +oUq +oUq +rxI +fjr +ugV +ugV +ugV +jDO +kJd +wrC +uCB +jqv +vdg +oYR +pJX +wrC +cWh +cNT +bYP +sgT +wVF +alI +sgT +adh +adh +uUd +sjy +ldK +wxK +mqH +sxp +ukK +azl +qGC +vgD +sjy +mHx +xxs +xxs +nrP +uDb +xxs +hSf +siL +haQ +tiZ +dMl +pqV +iDD +htn +lVp +gDb +yca +yca +jfO +jfO +mck +iNY +nwN +yiM +yiM +vXc +vXc +vXc +vXc +vXc +vXc +uJi +psW +psW +psW +rMF +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +jmG +eje +wZy +xiT +jmG +aZj +aZj +jmG +jmG +jmG +vXY +qPA +ild +ild +lte +lte +jmG +tWT +mPr +hFX +ipa +iaO +wIr +wIr +cOs +qvn +wIr +wIr +xEw +uiC +mPr +mPr +mPr +mPr +mPr +mPr +mPr +ndG +jas +jas +gJw +uGe +tqx +xPg +vpe +eso +jpx +eso +eso +uMl +vWI +uph +aAI +jvA +wIu +rPD +aPc +jas +cpy +cpy +bMX +"} +(98,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jYJ +dOa +dOa +dOa +ygI +aJk +dZs +mKx +lZL +mPX +mPX +saC +saC +saC +saC +saC +saC +saC +dPr +mPX +mPX +jmf +saC +saC +tkn +tVC +oZI +saC +saC +saC +saC +gof +gof +gof +nRE +gof +tkn +gof +saC +saC +saC +gnL +qjG +qjG +yaj +qjG +qgx +saC +saC +saC +bUN +gDO +kwg +jkJ +wrO +eQq +oUq +oUq +oUq +gVR +kXY +wwG +hCH +hCH +mzX +har +vnW +oUq +bYZ +kVO +caE +xQq +oUq +oUq +oUq +rxI +fjr +fjr +ugV +fjr +jDO +kJd +wrC +ayu +xgt +xgt +pJX +mHf +wrC +wmF +lHk +wrC +sgT +sgT +sgT +sgT +vee +vee +vee +sjy +sjy +dpJ +vSZ +qpq +qGC +bmj +mqH +dmz +sjy +swc +mHo +xxs +mrM +uDb +mHo +hey +siL +egW +bBI +fMj +sqQ +qiN +nBe +lVp +vjt +obo +tjV +yca +hcg +eZg +lVp +nwN +vXc +yiM +yiM +yiM +yiM +yiM +vXc +uJi +rMF +jmG +iTm +tTI +jmG +jmG +jmG +uwq +rBW +jmG +iCq +naU +npu +jmG +qNk +naU +msR +ifo +wZy +jmz +uTh +aeE +xZc +lXd +lXd +jPQ +jmG +jmG +jzF +wgH +jwM +jwM +ild +meb +jmG +tWT +mPr +gsX +bYV +wIr +wIr +oNn +bVC +jAn +gGj +wIr +wIr +kYB +oqO +mPr +mPr +mPr +mPr +mPr +nax +ndG +jas +hgG +vpe +vpe +sVJ +bXZ +fhl +nQu +vxf +eso +eso +eso +vWI +uph +aAI +odc +vpe +uEE +cjc +jas +cpy +cpy +bMX +"} +(99,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +phV +bIr +dFw +dFw +vfm +dZs +ghF +xZb +mPX +mPX +saC +saC +saC +saC +saC +saC +lpL +dPr +lpL +lpL +jmf +saC +saC +tkn +tVC +hNJ +rBm +bvB +nAy +nAy +nAy +nAy +nAy +xgD +erH +uOv +nAy +saC +saC +bNy +bZx +qjG +qjG +yaj +qjG +pwC +saC +saC +saC +bUN +mhG +kwg +jkJ +wrO +emS +oUq +oUq +olG +uCP +aVj +hCH +hCH +tpV +kXY +har +kMU +oUq +xQq +kVO +qfo +nMB +oUq +oUq +oUq +oUq +fjr +fjr +fjr +fjr +jDO +kJd +wrC +wrC +wrC +jaG +wrC +wrC +wrC +mfu +mMu +lUb +nFw +ssZ +dJn +eBV +wFd +maf +maf +sjy +sjy +sjy +pOB +cba +sbK +nto +xZe +brV +sjy +ckE +gPN +jWF +rUf +ckE +gPN +xtS +sjy +rJH +ogA +oLo +efK +etx +gqR +lVp +lVp +osO +tjW +fYh +rEF +lVp +lVp +eyc +psW +psW +psW +psW +psW +psW +psW +rMF +jmG +jmG +tLG +tLG +hTb +jmG +sBI +khN +caU +jmG +eZI +jBR +npu +jmG +bkM +wly +dIK +jYG +wZy +cWy +unC +fFX +wdd +mFZ +qNR +ifB +rYW +jmG +jmG +ycH +gQV +piY +piY +aDh +jmG +tOo +hEV +tOo +wIr +wIr +cDe +tjC +oqp +qzQ +nfx +bnB +wIr +wIr +tyh +jlb +mPr +mPr +mPr +mPr +nax +ndG +jas +eIV +vpe +vpe +kpB +bXZ +wwc +vlp +nDR +vpe +eso +eso +lzB +nus +jas +nwa +sKx +vpe +odc +jas +cpy +cpy +bMX +"} +(100,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +hVK +phV +bIr +dFw +dFw +vfm +cKw +ghF +xZb +mPX +wNZ +lpL +saC +saC +saC +saC +saC +giS +dPr +lpL +lpL +saC +saC +saC +tkn +tVC +oZI +oZI +fVS +hNJ +oZI +bQX +sFC +sFC +sYZ +oZI +oZI +saC +saC +saC +saC +gIL +pwX +pwX +uhx +vlq +vlq +saC +saC +saC +eQq +gDO +rgD +cjt +wrO +jpl +oUq +oUq +oYY +ltO +kXY +aVj +har +qts +nMX +nMX +exi +tim +raH +bof +sMA +oMo +oUq +oUq +oUq +fjr +fjr +fjr +fjr +fjr +jDO +kJd +wrC +ePs +wWN +tUX +uUa +kUw +wuY +wqp +cxD +dbh +xiJ +dbh +xiJ +xiJ +dbh +dbh +xiJ +mDu +sjy +sjy +sjy +sjy +gkT +wZq +sjy +sjy +sjy +sjy +lBG +lBG +sjy +lBG +lBG +sjy +sjy +kqb +ovr +kVd +msT +rRP +kqb +lVp +lVp +lVp +jOA +iBv +lVp +kqb +kqb +wvY +wvY +wvY +kqb +jmG +wZy +rJC +wZy +jmG +jmG +knk +bnP +wiE +lSh +jmG +blj +wly +xLG +jmG +iCq +wly +npu +jmG +bsD +wly +goU +jmG +jmG +iLx +unC +xDA +gXc +wiE +wEW +ifB +yhi +vUs +jmG +jmG +toH +toH +toH +jmG +jmG +wIr +kwU +wIr +wIr +pbr +aBt +fIa +iQo +tkf +fTP +aUB +psJ +wIr +wIr +nvH +mPr +mPr +mPr +mPr +nax +qFB +jas +pyP +rqP +rqP +vrW +cpx +hNk +vpe +vpe +vpe +eso +eso +lzB +feQ +jas +eMs +xFv +vpe +gzi +jas +cpy +cpy +bMX +"} +(101,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +kxC +uXX +dFw +dFw +dFw +fGi +eXe +sIL +xZb +lpL +lpL +lpL +jZf +mPX +mPX +saC +lPX +dwU +vcX +mPX +mPX +saC +saC +saC +vyG +aQI +sFC +sFC +nLT +sFC +sFC +amp +oZI +oZI +oZI +oZI +saC +saC +saC +saC +oZI +hNJ +qjG +qjG +yaj +qjG +saC +saC +saC +tTv +hiS +eRd +kXY +aYd +qTC +eSF +tTv +oUq +oUq +qfi +xCd +hzI +hzI +sQw +kWS +lLE +flF +oUq +kVO +pGQ +lXY +fts +oUq +oUq +oUq +fjr +fjr +fjr +fjr +fjr +jDO +kJd +wrC +ePs +mSb +xJr +qyF +iWV +uiS +bih +soU +kEV +xrR +dbh +xiJ +xiJ +xiJ +dbh +xiJ +mDu +sjy +uHW +aHs +lCX +fdP +iDh +lCX +lCX +aUw +hSf +hSf +lCX +aHs +sEU +bFE +rSC +siL +dmK +fuc +pNs +lxL +dEp +lKR +dzU +etk +fSb +kLT +oFn +vUC +kqb +eLi +eLi +xlP +xlP +kqb +jmG +pXy +rQu +yay +yay +jmG +jzV +wly +wiE +vzA +jmG +jmG +dlP +jmG +jmG +jmG +sbe +jmG +jmG +wZy +owT +wZy +jmG +gOS +kyo +yhi +yhi +ifB +krm +wiE +wGJ +vNi +mvM +jmG +hbz +feI +feI +feI +dBM +jmG +mAk +fFq +rIp +aee +mud +fTP +xgH +dbR +dbR +tkf +fTP +aBt +oaz +jDS +kOp +mPr +mPr +mPr +nax +nax +qFB +jas +gGc +eso +eso +eso +wwc +ggZ +iqV +iqV +iqV +ixO +eso +eso +uhJ +aAI +gkA +vjr +vpe +ahU +jas +cpy +cpy +bMX +"} +(102,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +tLh +gIo +gIo +gIo +gIo +kvi +cKy +ggN +cNP +dwU +dwU +dwU +etJ +tBx +jiR +jiR +qzP +lpL +lpL +mPX +saC +saC +saC +tiQ +wDQ +tVC +oZI +oZI +fVS +oZI +oZI +vNC +oZI +oZI +oZI +saC +saC +saC +saC +oZI +bQX +sFC +pHT +pHT +mlE +saC +saC +saC +tiQ +tTv +tTv +oGV +oGV +jqb +oGV +tTv +tTv +tTv +oUq +oUq +oUq +oUq +qGn +qdJ +oUq +oUq +oUq +oUq +jwV +kVO +qHD +oUq +oUq +oUq +oUq +oUq +fjr +fjr +rxI +fjr +jDO +kJd +wrC +wrC +llO +pQd +tNu +cWP +aMP +wFj +nvZ +gSL +xiJ +tXl +aBQ +uVE +xiJ +xiJ +xiJ +bih +sjy +lCX +kOS +uDb +xxs +emz +ndb +ndb +beD +vbX +sLk +sLk +sLk +jQk +ndb +bMz +bhs +big +sbV +ucM +cpJ +cLi +ave +mKf +ave +uKa +ucM +uKa +ave +mKf +ave +uKa +uKa +veP +bYR +mlX +eSY +tPs +tPs +xfB +qiX +grP +jze +grP +grP +qiX +xNd +iYt +nhk +eif +ogB +sBt +grP +fiu +grP +sgg +nhk +cCN +kGa +wfo +grP +xNd +grP +eDz +grP +aVA +xNd +xNd +qiX +nhk +tPs +tPs +tPs +nhk +aVJ +boy +pOs +boy +lWN +vUe +hoy +qzU +dbR +dbR +tkf +qzQ +uyL +vLx +jDS +cNv +mPr +mPr +bwd +nax +gsX +mCq +jas +sNH +eso +eso +eso +xFv +bxr +iqV +iqV +xHj +gvU +boQ +vpe +tRg +aAI +pxa +urh +vpe +rPD +jas +cpy +cpy +bMX +"} +(103,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +dFw +dFw +dFw +dFw +dFw +aQK +eXe +ghF +xZb +dJG +xdM +xdM +qXg +daI +jRf +xdM +xdM +xdM +xdM +xdM +saC +saC +saC +tiQ +saC +tVC +oZI +oZI +saC +saC +oZI +vNC +oZI +oZI +saC +saC +saC +saC +oZI +oZI +vNC +oZI +oZI +saC +saC +saC +saC +tiQ +tiQ +mWH +lfJ +bOi +nAA +qWR +qvw +fVR +oAF +tiQ +tiQ +tiQ +bjd +diK +kFn +obW +iQQ +oUq +oUq +oUq +oUq +cTU +oUq +oUq +oUq +oUq +oUq +rxI +fjr +fjr +rxI +fjr +jXQ +hgi +ahP +wrC +wrC +vce +duM +krq +uTv +bih +hiR +dbh +xiJ +xiJ +xiJ +xiJ +xiJ +xiJ +xiJ +bih +rde +nhj +xxs +eUh +eUh +nrP +eUh +uDb +uDb +aYD +uDb +gLk +uDb +uDb +dXt +fdP +coj +vxA +lxL +oLd +wTr +xDJ +oFn +ucL +lKR +wTr +qQS +wTr +lKR +ucL +lKR +wTr +wTr +wTr +lKR +vzA +qic +unC +unC +vzA +iTm +yhi +wYe +wiE +yhi +iTm +wiE +wiE +qic +sgm +wly +wiE +yhi +wdd +yhi +ffj +dWn +wiE +yhi +wYe +vov +wzx +gXc +wiE +wiE +yhi +wdd +jAI +iTm +jqS +qic +qic +qic +jqS +iTm +qzL +tkf +qzL +ouu +oqp +fTP +xgH +dbR +dbR +oLa +cpX +pdY +kws +yaR +nLL +mPr +mPr +nax +gvG +qFB +jas +jas +hyq +eso +eso +nLy +qHr +kce +jas +jas +pLr +rzk +umk +tWf +jas +jas +bdo +vjr +iJZ +rPD +jas +cpy +cpy +bMX +"} +(104,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +dFw +dFw +dFw +dFw +dFw +fGi +cKC +sIL +mtb +mdy +ghF +ghF +klN +sxe +ghF +ghF +ghF +ghF +ghF +saC +saC +saC +saC +tiQ +saC +saC +saC +saC +saC +saC +saC +vRm +fVS +fVS +saC +saC +saC +saC +oZI +oZI +vNC +oZI +saC +saC +saC +saC +eQJ +dfb +tiQ +mWH +nAP +qjG +nAy +stx +vwx +bZx +dzj +fMV +ipn +tiQ +bjd +gTd +bQw +bQw +sMl +bQw +bjd +gdA +gdA +iWk +sWq +gdA +gdA +gdA +ien +rxI +pmB +oMs +ufq +fjr +fjr +jDO +aLx +ahP +wrC +wuY +uiS +wuY +wrC +oVJ +soU +cau +beB +tHy +tHy +tHy +beB +tRe +xiJ +wqp +cro +fdP +xxs +uDb +uDb +xtO +nPo +uDb +lCX +hSf +hSf +klO +rpA +lCX +wbw +fOB +siL +oFn +cHg +pNs +xGf +lxL +lKR +dzU +nZn +lKR +oHY +oFn +vUC +kqb +xlP +eLi +eLi +xlP +kqb +jmG +feI +yay +yay +rQu +jmG +mnY +wly +wiE +lSh +jmG +vjV +yhi +jqS +fFX +pCm +yhi +yhi +vjR +wiE +jqS +jqS +wiE +yhi +wLd +jmG +icT +gXc +yhi +wiE +yhi +gXc +lSh +jmG +hbz +feI +feI +feI +dBM +jmG +mAk +fdz +rIp +wIr +cDN +fTP +xgH +dbR +dbR +oLa +fTP +aBt +kbw +jDS +ccQ +mPr +nax +nax +nax +ndG +pZN +vpe +eso +vpe +eso +vCz +vpe +kce +jas +tcJ +xPF +xPF +xPF +xPF +ljr +jas +ayc +tOx +eso +wex +jas +cpy +cpy +bMX +"} +(105,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +dFw +dFw +dFw +nmV +oqZ +qhK +tiQ +lkp +bVh +bVh +bVh +jEu +nTl +kSK +uvq +uvq +uvq +nTl +jEu +saC +saC +saC +saC +tiQ +saC +saC +saC +saC +saC +saC +saC +vNC +oZI +oZI +oZI +saC +saC +saC +fVS +fVS +hCM +lmh +saC +saC +iXA +bnI +gof +xQc +xQc +xQc +juX +ehO +qjG +oZI +oZI +rBm +tfC +vic +dXA +tiQ +bjd +pqQ +dqi +pmQ +sMl +bQw +bjd +gdA +xjX +suq +suq +kfV +tbW +gdA +ien +ien +xcw +pZG +img +fjr +fjr +jDO +fjr +aLx +wbg +wbg +wbg +ahP +wrC +vUL +soU +xiJ +xiJ +xiJ +dbh +dbh +xiJ +xiJ +dbh +jbh +sjy +hSf +xxs +uDb +kBB +nrP +xxs +lCX +xYE +sjy +lBG +lBG +sjy +lBG +lBG +sjy +sjy +kqb +owX +hnk +lxL +bow +kqb +kqb +kqb +kqb +yjw +mFz +kqb +kqb +kqb +wvY +wvY +wvY +kqb +jmG +wZy +wZy +wZy +jmG +jmG +ooT +wly +yhi +lSh +jmG +lSh +oet +yhi +onX +pCm +yhi +wiE +wiE +wGJ +vMu +wiE +yhi +vNi +gPB +jih +fFX +gXc +yhi +wiE +wiE +hft +fPP +jmG +jmG +toH +toH +toH +jmG +jmG +wIr +kwU +wIr +wIr +dCq +aUB +spJ +oLa +oLa +fTP +aUB +nNN +wIr +wIr +tWT +mPr +nax +nax +nax +ndG +pZN +vpe +eso +eso +eso +aTj +vpe +jMv +ncU +tzd +wIX +fDR +rGU +yaK +tzd +jas +bBN +lTQ +nQG +tAz +jas +cpy +cpy +bMX +"} +(106,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +dFw +dFw +nYX +tqQ +kQf +kQf +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +mlr +ldc +mQx +mlr +mlr +mlr +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +saC +lmh +vNC +oZI +oZI +oZI +saC +saC +nhy +oZI +oZI +xtf +saC +saC +saC +xrN +trX +gof +qjG +dfb +xQc +dfb +dfb +qjG +oZI +qjG +qjG +vNC +pqO +gSp +tiQ +bjd +qEQ +lYK +hvh +pqQ +bQw +bjd +gdA +fri +csI +bjn +xyu +tbW +gdA +ien +rxI +vSt +pkz +fYK +fjr +fjr +jXQ +nQx +fjr +ugV +ugV +ugV +kJd +vee +wqp +hiR +xiJ +xiJ +jsn +trM +uVE +xiJ +xiJ +dbh +pFq +sjy +gcs +oCr +uDb +uDb +xtO +uDb +lCX +sjy +sjy +ape +ape +sjy +dXI +kRQ +uVI +sjy +lqC +xGf +pNs +kVV +xGf +tFr +kqb +wTG +eWv +tpx +pPg +iOj +kqb +kqb +xXg +xXg +xXg +lxw +lxw +lxw +lxw +lxw +xXg +jmG +jmG +xnr +fIv +cGy +jmG +qmd +yhi +yhi +yhi +xju +yhi +wiE +wiE +mld +wiE +tex +yhi +yhi +fgr +qic +fFX +wdd +yhi +yhi +xPK +hGB +jmG +jmG +yej +ocN +opQ +ocN +ocN +jmG +xzK +qPM +xzK +wIr +wIr +onf +hOj +hoy +afr +cDM +eDy +wIr +wIr +xzK +toe +fWG +uwT +uwT +uwT +rrh +pZN +vpe +vpe +eso +vpe +aTj +vpe +crT +gwH +dOx +pou +pKN +pKN +fly +tzd +jas +jas +tjK +qsN +aAI +jas +cpy +cpy +bMX +"} +(107,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +nYX +oqZ +qhK +kXC +kQf +tiQ +tiQ +tiQ +hBg +hBg +hBg +tiQ +twp +twp +trQ +twp +twp +twp +tiQ +dgb +fLK +dgb +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +lmh +vNC +oZI +oZI +oZI +saC +nhy +oZI +oZI +oZI +vNC +nhy +saC +mBs +slJ +gof +qjG +qjG +dfb +xQc +xQc +kNH +nxs +kJI +oZI +acD +vNC +pqO +fBn +tiQ +bjd +qEQ +lYK +hvh +pqQ +bQw +bjd +gdA +xvI +bhf +umE +qkQ +suq +gdA +ien +ien +rxI +ien +rxI +ien +ien +ien +jXQ +vwi +vwi +vpa +ugV +kJd +vee +kUe +hiR +dbh +xiJ +xiJ +xiJ +xiJ +xiJ +xiJ +xiJ +pFq +sjy +sjy +pRW +xxs +uDb +lui +uDb +lCX +siL +kpP +iXT +pLT +sjy +flI +gMb +nOB +bAe +lKR +bDR +pNs +pli +lxL +lKR +pGl +wTG +lsh +pPg +lsh +lFf +kqb +kqb +kqb +xXg +fJc +tTD +tTD +tTD +tTD +tTD +xDb +xXg +jmG +rPU +tTI +jmG +jmG +jmG +qbk +sVu +eVr +jmG +bsD +bsD +mHw +hGB +woy +yhi +rlV +tex +icI +xMX +aDc +yhi +wdd +tty +tty +jmG +jmG +hib +aVX +meb +meb +meb +aVX +jmG +ePV +fWG +pgA +xzK +wIr +wIr +eBy +aBt +sWZ +vPE +wIr +wIr +teD +toe +gme +sMN +sMN +sMN +sMN +thy +bwT +kwj +wiU +lWf +lWf +mOy +vpe +kZs +vOy +wip +cmI +cmI +cmI +wip +tzd +jas +vDI +xFv +eso +vDI +jas +cpy +cpy +bMX +"} +(108,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +qhK +cAY +kQf +aaR +tiQ +tiQ +jXr +jXr +jXr +jXr +mlr +mlr +mlr +mlr +gHh +weP +weP +weP +weP +weP +aST +mQx +saC +saC +tiQ +tiQ +saC +saC +saC +lmh +lmh +vNC +oZI +oZI +oZI +fVS +oZI +bQX +sFC +sFC +iGV +sFC +fWq +kXk +gof +gof +hjt +geo +dfb +dfb +nCs +jHv +kNH +qRn +raA +dGs +spH +kPu +gof +tiQ +bjd +qEQ +lYK +hvh +pqQ +bQw +bjd +gdA +bWB +bhf +pFl +qkQ +suq +gdA +ien +ien +ien +ien +ien +ien +ien +ien +hgk +hqA +jqy +hNR +wIq +rYi +wrC +iRE +nVq +ruE +bih +bih +kDI +wXX +wXX +wXX +kxI +sjy +sjy +sjy +pMe +xxs +uDb +xtO +qDr +hSf +siL +mty +mvB +pVA +sjy +jvk +rLx +nOB +bAe +oFn +xGf +pNs +lxL +xGf +oFn +dzU +cid +nRv +pPg +lsh +lsh +wBD +bIq +kqb +kqb +xXg +lUB +tTD +rnB +rnB +tTD +tTD +xDb +lxw +vjw +lxw +wIi +vNk +vNk +vNk +wpn +wpn +vNk +uIZ +wpn +vNk +vNk +fPP +xPK +yhi +yhi +saz +avX +qot +yhi +rsC +jmG +jmG +jmG +lte +brk +rdF +ild +jwM +cdm +mfN +jmG +ePV +fWG +fWG +pgA +xzK +wIr +wIr +nKL +ksg +wIr +wIr +xzK +toe +uwT +tKe +uwT +uwT +uwT +uwT +rrh +pZN +vpe +vpe +eso +lNl +tcK +vpe +vpe +opG +wip +mGL +wip +wip +wip +tzd +jas +rPD +xFv +nQG +bYm +jas +jas +cpy +bMX +"} +(109,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tLW +kQf +dTn +tiQ +tiQ +tiQ +qsF +jXr +cTX +iZI +iZI +iZI +svW +jmr +gkR +vxP +gkR +tdn +ieG +svW +rlW +roS +ivf +qXK +saC +saC +tiQ +tiQ +tiQ +saC +saC +lmh +mox +sFC +sFC +sFC +nLT +sFC +sYZ +oZI +oZI +oZI +oZI +pjo +kHY +dfb +qjG +qjG +gof +mPY +dfb +xQc +xQc +sVq +slL +uZj +fVS +vNZ +xyZ +wiK +tiQ +bjd +gTd +lYK +hvh +gTd +bQw +bjd +gdA +xvI +ojH +czA +qkQ +suq +gdA +ien +ien +cpy +ien +cpy +ien +ien +rME +nQQ +qSH +qaH +umR +bRm +wKg +wKg +wKg +xLo +sGJ +wKg +wKg +wKg +tsN +tsN +tsN +tsN +sjy +sjy +sjy +tSc +uDb +uDb +xtO +uDb +hSf +siL +eDc +jjP +biL +sjy +mAD +iAU +wiI +sjy +kqb +qEb +nfP +wob +lxL +lKR +dzU +lFf +pPg +pev +cwG +pPg +kvy +pPg +oXd +kqb +xXg +fJc +tTD +tTD +rnB +tTD +tTD +tTD +rnB +kcN +rnB +uuX +vNk +vNk +bPE +ofc +hkA +vNk +wKD +aHU +uNq +vNk +vNk +hGB +yhi +wiE +wly +qMo +sJI +yhi +wiE +ezD +jmG +qdm +ild +dco +atH +jwM +liN +ild +jwM +iTm +ePV +fWG +fWG +fWG +pgA +qPM +qPM +qPM +mzi +wLb +wLb +jOM +weJ +weJ +qUh +uwT +uwT +uwT +fWG +rrh +vOy +eso +vpe +vpe +aBY +vjr +vpe +vpe +vOy +iZj +iZj +wip +wip +iZj +tzd +jas +mSS +vZS +vpe +tAz +eCz +jas +cpy +bMX +"} +(110,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +kQf +tiQ +tiQ +jzU +jXr +jXr +aLJ +dDS +iZI +iZI +svW +svW +tAZ +rlW +wNz +rlW +rlW +qAA +svW +svW +wNz +rlW +rlW +saC +saC +saC +saC +tiQ +tiQ +saC +saC +lmh +oZI +oZI +oZI +fVS +oZI +oZI +oZI +oZI +oZI +oZI +rJt +gof +dfb +qjG +gof +gof +mPY +dfb +dfb +xQc +mME +iSD +qRn +oZI +rJt +rWF +hhY +tiQ +bjd +pqQ +lYK +hvh +gTd +bQw +bjd +gdA +fri +mon +wYN +cqo +tbW +gdA +cpy +cpy +cpy +cpy +cpy +cpy +ien +rMR +jGa +qSH +qaH +umR +rEM +wKg +wKg +wRc +wNJ +qgH +qgH +wKg +wKg +oZy +oZy +oZy +aTV +aTV +isE +sjy +lCX +qDr +xxs +nrP +uDb +kYv +sjy +sjy +qJa +sjy +sjy +sjy +flm +sjy +sjy +rxn +xDJ +nfP +wTr +xGf +lKR +dzU +bLl +lsh +lsh +uvK +pPg +lsh +cwG +bvX +kqb +kqb +fJc +rnB +tTD +rnB +rnB +tTD +tTD +sTX +oCt +tTD +uuX +vNk +jTO +ozn +xMO +xMO +uJB +xMO +ovA +xMO +qXb +wpn +gHi +yhi +yhi +wly +wiE +wiE +onX +wiE +oXe +toH +jCU +atH +ild +ild +buz +xwt +ild +ild +mTL +ePV +fWG +fWG +fWG +uwT +uwT +uwT +uwT +tKe +uwT +uwT +uwT +uwT +uwT +dUY +uwT +fWG +fWG +fWG +rrh +vOy +eso +eso +vpe +xAP +vjr +vpe +kZs +qOx +tzd +bWy +ktZ +iZj +bWy +tzd +jas +uJy +vjr +sTG +uJy +xdP +jas +cpy +bMX +"} +(111,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +jXr +jXr +aLJ +aLJ +aLJ +dDS +iZI +fFw +iZI +mlr +tAZ +eTA +gCl +mlr +rlW +qAA +mlr +rlW +tQs +iFj +xnS +gXH +saC +saC +saC +saC +saC +saC +saC +saC +lmh +lmh +oZI +fVS +oZI +oZI +oZI +oZI +oZI +oZI +rJt +gof +qjG +qjG +trX +uwo +nAy +mTW +dfb +xQc +xQc +cYu +qRn +oZI +rJt +nZM +xQc +tiQ +bjd +pqQ +lYK +hvh +pqQ +bQw +bjd +gdA +fri +suq +lOB +suq +tbW +gdA +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +ssh +qSH +qaH +pRv +wja +jqC +eXs +gIa +kRg +gIa +gIa +hiC +vMP +gIa +opl +opl +opl +kEN +kSH +jGv +euv +ndb +vbX +tjM +ndb +euv +qIZ +lIY +nLD +xen +oXQ +jQk +uMc +xxs +bAe +oFn +xDJ +nfP +wob +xDJ +lKR +dzU +lsh +cwG +pPg +lKe +tMQ +pPg +lsh +lsh +kdT +kqb +fJc +rnB +tTD +cpy +cpy +tTD +lzw +tTD +oCt +tTD +uuX +vNk +jTO +ozn +ozn +eZM +xMO +eZM +xMO +ozn +qXb +wpn +iCq +yhi +yhi +wYe +vMu +yhi +tex +bJZ +pKh +jmG +lSe +ojy +ild +ild +lte +xwt +ild +jwM +mTL +xzK +eEY +fWG +fWG +fWG +uwT +uwT +uwT +tKe +uwT +uwT +uwT +uwT +uwT +fWG +fWG +fWG +uje +fWG +rrh +jas +jas +ajg +mNc +eso +xFv +eso +vpe +jas +aIr +xPF +xPF +xPF +xPF +dFz +jas +jqN +bUV +vpe +uJy +eCz +jas +cpy +bMX +"} +(112,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +tiQ +jXr +jXr +aLJ +aLJ +aLJ +iZI +dDS +iZI +iZI +iZI +mlr +tAZ +fab +nTl +nTl +mlr +qAA +mlr +iZI +bUR +twp +twp +twp +saC +saC +saC +saC +saC +saC +saC +saC +saC +lmh +saC +saC +oZI +sao +oZI +oZI +oZI +tVr +jCH +gof +qjG +dfb +gnL +hLu +oZI +cvM +dfb +dfb +seF +sSO +drA +qjG +rJt +gof +aJy +tiQ +bjd +gTd +lYK +hvh +pqQ +bQw +bjd +gdA +gdA +gdA +gdA +gdA +gdA +gdA +cpy +cpy +cpy +cpy +cpy +cpy +ien +tNQ +qSH +qSH +qaH +umR +kmr +uUi +cUp +tQi +jdn +tQi +tQi +cUp +ozB +tQi +gwb +gwb +xZz +yjr +sSg +gAx +fdP +xxs +qDr +nrP +xxs +fdP +coj +nhj +uDb +eUh +nud +nud +uDb +xxs +bAe +tWx +lxL +pNs +xGf +xGf +xcT +kqb +feK +pPg +lsh +nRv +dCF +pPg +pPg +gGI +jLZ +ezR +fJc +rnB +tTD +tTD +cpy +cpy +lzw +tTD +oCt +fEP +xXg +vNk +jTO +wGh +gij +mHv +nlW +eHY +ozn +xMO +qXb +wpn +iCq +wiE +tex +fiS +bJZ +wdd +yhi +yhi +cTK +iTm +jCU +jwM +jwM +ild +lmJ +uKS +jwM +jwM +qEc +jmG +gkY +eEY +fWG +fWG +uwT +uwT +uwT +tUL +uwT +uwT +uwT +fWG +fWG +fWG +fWG +fWG +fWG +fWG +pgA +xzK +jas +sdf +rwC +eso +wwc +eso +vpe +jas +jas +kEv +fYd +fYd +bqA +jas +jas +vDI +xFv +vWI +uJy +jas +jas +cpy +bMX +"} +(113,1,1) = {" +bMX +cpy +cpy +cpy +cpy +tiQ +jXr +jXr +aLJ +aLJ +aLJ +aLJ +fib +fXU +fib +fib +aLJ +mlr +tAZ +otD +nTl +nTl +fmG +gde +ugp +pDi +bUR +twp +twp +twp +tAZ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +vjl +vjl +oZI +oZI +oZI +oZI +pqO +tkn +kJg +qjG +dfb +uwo +wFl +oZI +rBm +mTW +dfb +seF +nUP +oFG +qjG +jwo +uWN +dXA +tiQ +bjd +pqQ +lYK +hvh +qEQ +bQw +mPj +mPj +mPj +mPj +mPj +mPj +mPj +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +rNm +jOw +qSH +qaH +umR +loM +wKg +wKg +oZy +aTV +aTV +oZy +ozB +ozB +aTV +usU +oZy +oZy +rIA +oZy +sjy +lCX +dLK +cvi +tLE +iXT +hSf +sjy +uHW +lCX +day +rYm +shp +lcs +uHW +sjy +rqu +drq +htA +vNO +drq +xUu +kqb +bgd +jCF +pPg +lsh +lsh +pPg +lFf +lsh +gTy +kqb +fJc +rnB +tTD +tTD +cpy +cpy +lzw +fgB +bhZ +xXg +vNk +vNk +aHv +xMO +xMO +mHv +vBB +vMJ +xMO +ngB +vNk +vNk +vNk +wyL +wiE +hFv +rtz +jqS +yhi +qHj +yhi +iTm +jCU +jwM +jwM +ild +ild +uKS +jwM +tLr +phZ +jmG +jmG +hkO +eEY +fWG +uwT +uwT +ixP +tKe +uwT +uwT +cpy +cpy +fWG +fWG +fWG +fWG +fWG +fWG +fWG +rrh +jas +nus +nbE +vpe +oKe +xcX +kwj +tNl +tNl +tNl +tNl +tNl +tNl +tNl +utR +njm +qup +rPD +jas +jas +cpy +cpy +bMX +"} +(114,1,1) = {" +bMX +cpy +cpy +cpy +tiQ +tiQ +jXr +aLJ +aLJ +dFT +aLJ +iZI +iZI +dDS +iZI +iZI +aLJ +ugp +wtE +lzc +nTl +nTl +oAd +qAA +mlr +pDi +bUR +twp +twp +twp +tAZ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +vjl +vjl +vjl +nhy +nhy +vdW +pqO +tkn +qjG +qjG +iDr +hLu +oZI +oZI +hNJ +fCw +dfb +xQc +xQc +nAA +tVC +vNC +gdw +lEK +tiQ +bjd +pqQ +lYK +hvh +qEQ +bQw +mPj +eeo +cWR +gwf +bQw +bjd +mPj +mPj +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +svK +qSH +lvV +umR +ygq +wKg +wKg +xjF +xjF +xjF +xjF +oJn +nRS +xjF +xjF +xjF +xjF +sjy +sjy +sjy +bNH +ocH +xUJ +lTD +hSf +dLK +sjy +sjy +tpa +tpa +tpa +tpa +tpa +sjy +sjy +kqb +kqb +yjw +laC +kqb +kqb +kqb +kqb +kqb +vqL +lsh +rKP +pPg +lsh +pPg +kqb +kqb +fJc +rnB +rnB +tTD +cpy +cpy +tTD +tTD +sun +vNk +vNk +cIf +kuD +xMO +xMO +xMO +ekO +ekO +wGh +mzh +vNk +vNk +vNk +pHc +yhi +fFX +dfk +nhk +grP +xNd +xNd +dXi +rns +ldC +xcF +ldC +xcF +taP +ojy +uqP +wjF +rFr +jmG +jmG +vJp +fWG +uwT +uwT +ixP +tKe +fWG +cpy +cpy +uje +fWG +fWG +fWG +dWD +fWG +fWG +fWG +dhf +jas +feQ +xKH +vpe +wwc +vpe +vpe +mNk +mNk +mNk +mNk +ydo +mNk +mNk +jas +dtF +jas +jas +jas +cpy +cpy +cpy +bMX +"} +(115,1,1) = {" +bMX +cpy +cpy +tiQ +tiQ +jXr +jXr +aLJ +aLJ +iZI +iZI +iZI +iZI +cHj +azz +azz +eFP +weP +hhv +gGv +lsO +lsO +rqm +qAA +mlr +pDi +mFU +tiQ +tiQ +tiQ +tAZ +twp +saC +saC +saC +saC +saC +saC +saC +saC +saC +vjl +vjl +vjl +vjl +vlq +fVS +kXk +uPI +qjG +dfb +dfb +qRn +fVS +fVS +lmh +kXk +dfb +dfb +xQc +jrx +iST +vNC +pqO +gof +tiQ +bjd +pqQ +lYK +hvh +gTd +bQw +nDu +nDu +auS +auS +bQw +bQw +bQw +bjd +mPj +cpy +cpy +cpy +cpy +cpy +ien +iqb +kdx +vGp +qaH +umR +svI +umg +xjF +xjF +siU +tze +xjF +giX +giX +iMw +jzC +mSa +xjF +xjF +sjy +sjy +sjy +sjy +xgU +qiM +sjy +sjy +sjy +nHl +ulZ +ulZ +ulZ +ulZ +twY +ulZ +ulZ +pKX +dha +ylZ +wYR +dha +pKX +ocX +xXg +kqb +kqb +voe +nEE +aPZ +vYq +kqb +kqb +xXg +caB +rnB +tTD +tTD +cpy +cpy +tTD +tTD +sun +mWq +sCr +uew +xMO +xMO +xMO +yfX +ozn +xMO +xMO +xMO +vcY +wpn +rFP +wJH +wEW +fFX +sLG +fFX +wiE +wiE +lSh +iTm +jCU +jwM +ild +lte +buz +vVS +jwM +ild +ild +lte +atQ +jmG +kjW +fWG +uwT +uwT +ixP +fBR +fWG +fWG +fWG +fWG +fWG +fWG +fWG +hMN +fWG +xbM +fWG +xzK +jas +lQx +eso +vpe +xFv +eso +mNk +mNk +jas +jas +jas +jas +jas +jas +jas +nQu +jas +jas +cpy +cpy +cpy +cpy +bMX +"} +(116,1,1) = {" +bMX +cpy +cpy +tiQ +qsF +jXr +aLJ +aLJ +iZI +iZI +iZI +iZI +iZI +dDS +iZI +iZI +svW +mlr +tAZ +rlW +imG +rlW +rlW +qAA +mlr +iZI +bUR +twp +twp +twp +tAZ +twp +saC +saC +saC +saC +saC +saC +saC +thU +thU +thU +saC +saC +dxc +ntq +qjG +pqO +tkn +hqK +gof +uwo +wFl +oZI +oZI +oZI +rBm +bZx +rMk +yhz +gof +iST +vNC +qjG +hKK +tiQ +bjd +gTd +lYK +hvh +eTQ +kFn +woU +woU +woU +woU +ktt +bQw +bQw +bQw +mPj +cpy +cpy +cpy +cpy +cpy +ien +isa +svK +sRI +qaH +umR +qSH +fvs +xjF +msd +kCW +nJM +xjF +eNx +uog +uog +xBo +nnz +oVD +xjF +xFp +xZP +sBl +nAI +bRK +gNJ +dha +sBl +ulZ +ulZ +ulZ +jXK +nyV +gBI +jZc +wIE +ulZ +sBl +dha +djM +xAZ +dha +sBl +ocX +xXg +wIi +kqb +kqb +ggu +ggu +kqb +kqb +wIi +caB +rnB +rnB +tTD +tTD +cpy +tTD +tTD +rnB +fhx +bIM +oGZ +uNd +xFG +uNd +xFG +xFG +rKW +uNd +oaH +xMO +wKD +wpH +bkO +wGJ +wiE +wiE +wYe +yhi +yhi +wiE +rsC +jmG +gBz +jwM +ild +lte +buz +vVS +ild +uqP +wjF +rFr +khU +jmG +kjW +fWG +uwT +uwT +fWG +wVo +ltc +kGe +jAD +jAD +kGe +kGe +nwU +kGe +kGe +kGe +kGe +jas +jas +adP +mNk +eso +xFv +uhv +mNk +jas +jas +tTh +xsZ +jas +hQg +qRt +jas +nQu +uTY +jas +cpy +cpy +cpy +cpy +bMX +"} +(117,1,1) = {" +bMX +cpy +tiQ +tiQ +jXr +aLJ +aLJ +iZI +iZI +ccN +cwO +cwO +cKQ +cUg +iZI +dHj +vNr +mlr +lbs +rlW +rlW +rlW +rlW +qAA +mlr +rlW +bUR +twp +twp +twp +tAZ +twp +gZE +saC +tiQ +saC +saC +saC +saC +tiQ +saC +saC +saC +saC +saC +vjl +qjG +pqO +tkn +hjt +gof +tVC +oZI +oZI +oZI +oZI +toc +bnI +rMk +aiO +bHc +foL +wFE +bnI +pAw +tiQ +bjd +sMl +abL +bZI +hNP +hNP +hNP +hNP +hNP +vFD +bev +ktt +bQw +bQw +mPj +cpy +cpy +cpy +cpy +ien +ien +ien +ruv +ilU +qaH +umR +qSH +fvs +xjF +xjF +xjF +aov +xjF +gCO +uYR +wgW +wgW +jRT +jRT +uVh +xFp +xZP +sBl +nAI +xAZ +teF +dha +sBl +ulZ +ulZ +wIE +arm +vbl +bNN +hre +oTY +ulZ +sBl +nAI +xOw +ykT +nAI +sBl +ocX +xXg +lxw +lxw +lxw +lxw +lxw +lxw +lxw +caB +rnB +rnB +rnB +tTD +tTD +cpy +tTD +tTD +rnB +uuX +vNk +vNk +tpg +xMO +ozn +xMO +xMO +xMO +nFN +tQb +mHv +sER +wpH +bkO +wiE +wiE +wiE +wly +yhi +wiE +wEW +lgq +toH +jCU +ild +jwM +lte +lte +vVS +ild +ild +ild +lte +jmG +jmG +pAm +uwT +uwT +uwT +fWG +cZx +xzK +jas +jas +jas +jas +jas +jas +jas +jas +jas +jas +jas +jas +jas +mdN +eso +mYS +fnm +fmt +jas +nIj +qRt +qRt +jas +dGw +qRt +jas +nQu +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(118,1,1) = {" +bMX +cpy +tiQ +syL +iXu +aLJ +dFR +azz +azz +azz +azz +cFR +cKS +eJw +iZI +iZI +fib +mlr +tAZ +rlW +rlW +rlW +rlW +qAA +mlr +rlW +bUR +twp +twp +twp +tAZ +twp +twp +tiQ +tiQ +saC +saC +saC +saC +tiQ +saC +saC +saC +saC +qjG +qjG +oZI +pqO +tkn +kNc +gof +rUx +hNJ +oZI +oZI +oZI +pqO +saC +saC +xQc +uXY +tNy +tkn +gof +rAS +tiQ +bjd +sMl +bQw +abL +qsW +qsW +qsW +cgn +mqx +jZE +bQx +pqQ +gWT +gwf +mPj +cpy +cpy +cpy +cpy +cpy +ien +iel +iel +iel +qaH +pZo +qSH +fvs +xjF +pTJ +eHy +vSU +xjF +xsd +xCN +xPW +wgW +jRT +lol +uVh +xFp +xZP +sBl +dha +xAZ +djM +nAI +sBl +ulZ +wIE +eKm +blP +cyh +mRb +wIE +bWA +ulZ +sBl +nAI +xOw +ykT +nAI +sBl +ocX +fJc +tTD +sKJ +sKJ +tTD +tTD +tTD +tTD +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +rnB +rnB +uuX +xXg +vNk +vNk +oUl +mnE +vSs +dvY +eap +ehT +gFs +pDU +cBS +vNk +ezD +tuc +tXQ +pwu +wly +wiE +taw +kEM +euk +jmG +jCU +ild +jwM +okA +bbd +kyB +xcF +xcF +jkC +jmG +jmG +ifx +kZp +uwT +uwT +uwT +fWG +hzf +jas +jas +tSR +mlu +nnA +rNu +uph +nus +dlJ +rSu +mdN +mdN +xcP +pZN +vpe +tJN +rNv +cYE +fmt +aAI +eWM +qRt +sHV +jas +jas +sZR +jas +rmp +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(119,1,1) = {" +bMX +cpy +tiQ +wis +iZI +bNE +dDS +iZI +fFw +iZI +cxu +cGY +hgy +iZI +iZI +iZI +aLJ +mlr +tAZ +aNn +twp +uoJ +lpD +qAA +mlr +rlW +bUR +tiQ +tiQ +tiQ +bpU +twp +twp +tiQ +saC +saC +saC +saC +saC +tiQ +sZf +saC +qjG +qjG +oZI +oZI +oZI +tGq +mQY +hjt +mnw +qjG +oZI +oZI +oZI +oZI +saC +saC +tiQ +tiQ +tiQ +seF +aID +puv +yhz +tiQ +bjd +eTQ +gMf +kbb +pMz +yaH +tCt +lYK +mqx +mqx +kHM +pqQ +gWT +gwf +mPj +cpy +cpy +cpy +cpy +cpy +ien +iel +iel +iel +qaH +pZo +vGp +fvs +xjF +vuc +wgW +jBw +xjF +ddM +wgW +jiP +wgW +ydb +uqq +uVh +xFp +xZP +sBl +dha +ykT +djM +dha +sBl +ulZ +ulZ +ulZ +ulZ +ulZ +ulZ +ulZ +ulZ +ulZ +sBl +kTB +xOw +xAZ +dha +sBl +ocX +fJc +tTD +sKJ +tTD +tTD +tTD +tTD +rnB +rnB +cpy +rnB +rnB +tTD +tTD +tTD +tTD +rnB +rnB +uuX +xXg +vNk +vNk +vJD +vJD +vNk +vNk +vNk +vNk +ryx +fau +vNk +vNk +vNk +vNk +vNk +mFA +eur +cqb +rgG +jmG +jmG +jmG +jmG +iTm +iTm +jmG +jmG +iTm +iTm +jmG +jmG +jmG +xzK +toe +uwT +uwT +uwT +uwT +fWG +hzf +jas +sww +vpe +vpe +vpe +vpe +qQQ +nbE +rQB +vpe +fhl +ijR +ijR +gjp +myE +hvD +kjj +naH +kwj +rQl +pVW +rCr +qRt +sHV +qRt +rkk +jas +wFC +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(120,1,1) = {" +bMX +cpy +tiQ +jXr +bpj +azz +aZD +iZI +iZI +iZI +clf +cHj +frH +ciS +iZI +iZI +fFp +pDi +nTl +nTl +nTl +nTl +nTl +nTl +twp +rlW +bUR +twp +twp +twp +tAZ +twp +twp +tiQ +saC +saC +saC +saC +saC +tiQ +ijs +gof +qql +swH +tYg +icQ +tck +fZX +hem +bec +ugN +pHT +aAl +oZI +oZI +oZI +pqO +rMk +efn +tRU +efn +gof +tkn +gof +hQo +lTi +bjd +bjd +nFm +mvD +bjd +fIq +jrb +lYK +mqx +mqx +kHM +pqQ +gWT +gwf +mPj +cpy +cpy +cpy +cpy +ien +ien +ien +khG +isa +qaH +pZo +vGp +fvs +xjF +dFn +wWe +jBw +xjF +wZl +gcO +wgW +wgW +ydb +xRQ +xjF +xFp +xZP +pKX +pKX +iuI +tDj +pKX +pKX +ojp +uuJ +uuJ +uuJ +ojp +uuJ +uuJ +uuJ +ojp +pKX +pKX +aPK +hNl +pKX +pKX +ocX +fJc +tTD +tTD +tTD +tTD +tTD +tTD +rnB +cpy +cpy +cpy +rnB +rnB +tTD +rnB +rnB +rnB +rnB +uuX +vNk +vNk +vdZ +urd +tvv +vdZ +vNk +jnL +vrv +ngx +xMO +vNk +fjy +stf +lXR +vNk +xvl +fNN +ffe +xvl +xvl +jmG +jmG +jmG +xzK +xzK +jmG +jmG +xzK +xzK +jmG +jmG +xzK +toe +uwT +uwT +uwT +uwT +uwT +fWG +hzf +pZN +vpe +eso +vpe +vpe +eso +vpe +vpe +eso +eso +vjr +eso +eso +pZN +eso +eso +ipw +vpe +mdN +aAI +qRt +aWH +ewL +qRt +qRt +fks +jas +bWv +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(121,1,1) = {" +bMX +cpy +tiQ +jEu +jXr +svW +svW +mlr +mlr +mlr +mlr +bpj +mlr +lPi +mwx +jXr +pDi +pDi +nTl +nTl +nTl +nTl +nTl +nTl +twp +twp +bUR +twp +twp +twp +tAZ +twp +twp +tiQ +tiQ +saC +saC +saC +saC +tiQ +jEu +gof +xYD +fxh +oFG +saC +wnA +uyA +gof +saC +saC +qjG +yaj +oZI +afM +oZI +rpV +wiK +efn +nAA +uQQ +uyA +wRB +bZx +nAA +qjG +lTi +bjd +mnF +gTd +bjd +bjd +bjd +lYK +mqx +mqx +kHM +pqQ +gWT +gwf +mPj +cpy +cpy +cpy +cpy +cpy +ien +ssh +tNQ +vGp +qaH +pZo +vGp +fvs +xjF +xjF +vwl +fUx +dJw +wZw +ydb +jll +jRT +jRc +xjF +xjF +xFp +xZP +pKX +fVp +ykT +kGb +vJE +pKX +rQc +xJP +xVY +wjv +ojp +wjv +adL +xVY +xJP +pKX +mas +kcd +oig +gQz +pKX +ocX +fJc +tTD +tTD +tTD +tTD +tTD +rnB +cpy +cpy +cpy +cpy +rnB +rbx +fnJ +tDF +rnB +rnB +rnB +uuX +vNk +pZA +tGo +tGo +tGh +cbW +vNk +pOv +ikZ +vYL +ozn +vNk +xmh +ozn +pUo +lXR +xvl +nSB +rPN +xvl +xvl +teD +xzK +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +toe +uwT +uwT +cpy +cpy +uwT +uwT +fWG +fkZ +bwT +kwj +xcX +nyJ +lWf +tNl +kwj +lWf +lWf +lWf +cxo +vpe +mdN +pZN +mNk +mdN +xFv +ciE +mdN +jas +fGS +aWv +onJ +xdk +wUo +jas +jas +bWv +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(122,1,1) = {" +bMX +cpy +cpy +tAw +cvT +lap +gkR +gkR +gkR +gkR +gkR +tdn +gkR +odV +ufc +brL +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +bUR +twp +twp +twp +tAZ +twp +twp +saC +saC +saC +saC +saC +saC +saC +tiQ +dUs +xYD +tkn +llp +saC +saC +nOv +loY +saC +saC +myV +yaj +qjG +oZI +oZI +pqO +uRk +uQQ +gof +uQQ +gof +wrh +pqO +vDw +urH +qjG +bjd +mnF +gTd +bjd +fSf +cZH +bIS +mqx +mKC +kHM +gTd +bQw +bQw +mPj +cpy +cpy +cpy +cpy +cpy +ien +krI +bRs +bRs +qaH +jCy +vGp +hLi +xFp +xjF +xjF +xjF +xjF +xjF +xjF +xjF +xjF +xjF +xjF +xFp +eEp +xZP +lFZ +xAZ +xAZ +xOw +ykT +xJp +rNn +mSe +nYF +mSe +nCO +mSe +nDn +hYV +gjz +xJp +xAZ +qqx +pag +bia +lFZ +ocX +fJc +rnB +tTD +tTD +tTD +cpy +cpy +cpy +cpy +cpy +cpy +rnB +lua +xfl +gdo +tTD +rnB +rnB +uuX +vJD +tGh +uUk +wuX +ugR +tGh +vNk +gyb +xMO +tQb +rOT +vNk +fjy +xMO +tQb +nBb +xvl +mEX +wmm +xvl +xvl +idS +ePV +fWG +fWG +fWG +fWG +fWG +fWG +uwT +sag +quw +uwT +xRn +ybj +cpy +cpy +uwT +uwT +uwT +rrh +pZN +vpe +vpe +wwc +vpe +vpe +eso +eso +vpe +eso +vpe +mdN +jas +jas +jas +jas +lXl +jas +jas +jas +jas +jas +jas +jas +jas +jas +hra +nQu +aEF +jas +cpy +cpy +cpy +cpy +bMX +"} +(123,1,1) = {" +bMX +cpy +cpy +tAw +mlr +vGZ +rlW +dRM +rlW +rlW +rlW +rlW +stL +pZf +stL +jlp +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +mzQ +gkR +gkR +gkR +gkN +twp +twp +saC +saC +saC +saC +saC +saC +saC +xQc +wDQ +xYD +rPr +saC +saC +ncA +rrT +rzC +saC +loY +pSE +lNA +sFC +vaL +sFC +pIb +uPN +uLx +qvw +uLx +qvw +pcg +rBm +bZx +qjG +qjG +bjd +bQw +pqQ +bjd +fSf +cZH +mqx +mqx +mqx +kHM +pqQ +gWT +gwf +mPj +cpy +cpy +cpy +wDj +wDj +wDj +tCE +tCE +wDj +wDj +tEB +vGp +vGp +hLi +eEp +eEp +hSV +eEp +qqL +ddB +eEp +dBJ +eEp +qjn +rRq +qSH +kmr +paU +ykT +axD +kGb +vKe +eMw +hFy +dbF +mHC +mSZ +bMT +aXx +mSZ +rsX +vYx +eMw +qtx +mTK +sdC +dvp +paU +ocX +fJc +rnB +rnB +tTD +tTD +cpy +cpy +cpy +cpy +cpy +cpy +rnB +fPR +aiX +hBo +tTD +rnB +rnB +uuX +vJD +tGh +pBK +iEN +pTZ +tGh +vNk +nYW +vkD +ngx +toO +rkH +lSr +qDw +ngx +mnE +rkH +xgA +bsG +xLb +aoW +qzk +ePV +fWG +fWG +fWG +fWG +fWG +fWG +uwT +uwT +xxk +yjK +iwV +uwT +uwT +cpy +uwT +uwT +uwT +rrh +jas +mNk +mdN +scB +mdN +vpe +vpe +eso +eso +vpe +rSu +jas +jas +cEj +ncJ +myE +qHr +vpe +vxa +beS +bWv +bWv +nQu +nQu +nQu +nQu +nQu +nQu +haF +jas +cpy +cpy +cpy +cpy +bMX +"} +(124,1,1) = {" +bMX +cpy +cpy +tAw +gLL +cql +twp +twp +twp +twp +twp +twp +pYc +gYH +wUX +pDi +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +liL +dFy +wJx +dFy +dFy +dFy +bMl +saC +saC +saC +saC +saC +saC +saC +xQc +gof +gof +tkn +kFo +saC +aMZ +atM +bAU +bAU +nOv +tkn +tVC +oZI +oZI +lmh +aSt +dfb +uQQ +gof +uQQ +nAA +tVC +oZI +xPG +nAA +vKP +bjd +bQw +pqQ +bjd +fSf +fAl +qsW +qsW +qsW +dpp +pqQ +gWT +gwf +mPj +cpy +cpy +wDj +nJV +tzJ +dku +lid +nhm +juq +wDj +jLz +vGp +vGp +vGp +vGp +vGp +hSV +vGp +vxg +vGp +vGp +aAN +qSH +qSH +qSH +qSH +kmr +pKX +xUz +ykT +djM +dpN +pKX +rQc +vYj +rQc +xVY +ojp +jNx +xVY +meZ +rQc +pKX +uNK +gNn +mgb +odP +pKX +ocX +fJc +rnB +rnB +tTD +tTD +tTD +cpy +cpy +cpy +cpy +cpy +rnB +rnB +tTD +tTD +rnB +rnB +rnB +uuX +vJD +tGo +ugR +prX +pTZ +tGh +vNk +xMO +xMO +kwK +rVG +bIM +oGN +hIx +nNM +cWc +bIM +aSZ +acE +xLb +aoW +qzk +ePV +fWG +fWG +cpy +cpy +fWG +fWG +uwT +uwT +xbk +iUk +ixP +uwT +uwT +uwT +uwT +uwT +uwT +rrh +jas +jas +jas +jas +jas +ked +vpe +vpe +eso +vpe +bgY +jas +cEj +vpe +vpe +vpe +eso +vpe +ahZ +jas +jas +mwn +xxz +pYO +pYO +afa +afa +nUF +jas +jas +cpy +cpy +cpy +cpy +bMX +"} +(125,1,1) = {" +bMX +cpy +cpy +tAw +leW +dhq +twp +twp +gZE +pku +twp +ucy +eBi +cUl +dhX +ajN +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +pDi +pDi +twp +twp +twp +twp +twp +saC +saC +saC +saC +saC +saC +saC +xQc +hjt +hjt +aID +loY +oJD +fMY +xYD +mgo +bAU +uGD +tkn +tVC +oZI +oZI +oZI +kXk +gof +uQQ +gof +uQQ +qEP +tVC +hNJ +pqO +nOZ +qjG +bjd +bQw +pqQ +bjd +bjd +bjd +mnF +mnF +mnF +bQw +pqQ +gWT +gwf +mPj +cpy +cpy +wDj +dZc +ezo +eJR +iDH +eJR +qRY +ouc +gbO +vGp +vGp +vGp +vGp +vGp +hSV +nUO +hqZ +vGp +qSH +kdm +rMR +qSH +qSH +vGp +kmr +pKX +pKX +bMk +fWV +pKX +pKX +ojp +uuJ +uuJ +uuJ +ojp +uuJ +uuJ +uuJ +ojp +pKX +pKX +esO +dSb +pKX +pKX +ocX +fJc +rnB +rnB +tTD +tTD +tTD +tTD +tTD +tTD +cpy +rnB +rnB +sKJ +tTD +tTD +rnB +rnB +rnB +uuX +vJD +tGo +tCL +vmG +pTZ +cbW +vNk +hAy +xMO +ngx +eDh +vNk +vNk +vNk +vNk +vNk +xvl +vCJ +vSy +xvl +xvl +qzk +ePV +fWG +cpy +uwT +uwT +uwT +uwT +uwT +uwT +fWW +tlr +elq +uNg +uwT +uwT +uwT +uwT +uwT +pgA +qPM +qPM +qPM +xzK +jas +jas +moC +vpe +eso +gRi +rSu +jas +oEQ +vpe +oEQ +eso +oEQ +vpe +dlL +jas +jas +jas +jas +nQT +jas +jas +jas +jas +jas +cpy +cpy +cpy +cpy +cpy +bMX +"} +(126,1,1) = {" +bMX +cpy +cpy +tAw +tQe +tAZ +rlW +rlW +rlW +vwX +rlW +rlW +eus +hfL +taL +clp +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +rGz +bZO +bZO +gXH +cSw +twp +twp +saC +saC +saC +saC +saC +saC +saC +xQc +eQJ +gof +tkn +loY +jRV +ete +fYF +rVs +anr +loY +wym +tVC +oZI +oZI +oZI +kXk +gof +efn +ivt +uQQ +qEP +teW +iEi +bnI +ijs +lTi +bjd +bQw +bev +kFn +cfN +xaX +sPu +sPu +sPu +bQw +pqQ +gWT +mPj +mPj +mPj +mPj +wDj +lEP +eJR +kbH +iHD +ksk +wJe +rEx +sFD +qSH +vGp +vGp +vGp +vGp +hSV +nWq +vGp +qSH +qSH +qSH +qSH +qSH +vGp +vGp +kmr +sBl +nAI +ykT +xOw +nAI +sBl +fkj +fkj +fkj +fkj +fkj +fkj +fkj +fkj +fkj +sBl +jte +iGn +uOp +uEn +sBl +ocX +fJc +rnB +rnB +rnB +sKJ +tTD +tTD +tTD +tTD +rnB +rnB +rnB +rnB +rnB +tTD +rnB +tTD +rnB +uuX +vNk +qfK +wjf +wjf +uNp +tGo +lBb +xMO +eZM +hZL +mnE +vNk +vNk +fdH +nBb +vNk +xvl +seT +uFZ +xvl +xvl +qzk +ePV +dBD +sps +sps +sps +sps +sps +jhQ +uwT +uwT +ybj +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +xzK +jas +vqU +vpe +eso +eso +rSu +jas +dlL +oJj +dlL +eFb +oEQ +eso +dlL +jas +ctE +jas +aEF +nQu +wFC +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(127,1,1) = {" +bMX +cpy +cpy +tAw +qzB +cUo +gXH +gXH +gXH +gXH +gXH +gXH +gXH +pqe +ckL +gXH +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +nTl +rvb +twp +twp +twp +tAZ +twp +twp +saC +saC +saC +saC +saC +saC +saC +tiQ +lwx +xYD +iTh +loY +loY +lEy +hPU +cSC +loY +loY +tkn +tVC +xOJ +oZI +toc +xyZ +wYB +efn +dcV +uQQ +trX +nAA +cNh +trX +uzH +tiQ +bjd +tro +mnF +mnF +hIY +gTd +sPu +sPu +sPu +bQw +gTd +bQw +bQw +bQw +bjd +bjd +mPj +luZ +ftd +lTd +iJE +ibq +iRF +wDj +gRg +qSH +qSH +vGp +vGp +vGp +hSV +tkL +vGp +qSH +qSH +qSH +qSH +qSH +vGp +vGp +kmr +sBl +nAI +xAZ +djM +dha +sBl +fkj +mtI +mHU +jXK +nyV +gBI +bWd +jHi +fkj +sBl +fbF +sAp +vHw +oCy +sBl +ocX +fJc +rnB +sKJ +sKJ +sKJ +tTD +tTD +tTD +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +rnB +rnB +bon +vNk +xHr +xez +xez +xez +veT +dvR +uQr +ngb +hMT +oGN +oFH +cWc +qAt +djW +vNk +xLb +xhD +acE +xLb +aoW +qzk +ePV +qjO +ylo +ylo +ylo +ylo +ylo +ivy +uwT +xRn +uwT +uwT +ybj +uwT +uwT +uwT +ltc +kGe +kGe +kGe +kGe +kGe +xzK +xzK +jas +jas +pZN +pZN +pZN +jas +jas +jas +jas +jas +jas +jas +jas +jas +jas +ctE +jas +kFd +nQu +jwO +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(128,1,1) = {" +bMX +cpy +tiQ +jEu +qzB +svW +svW +kst +mlr +mlr +mlr +mlr +mlr +lPi +qAA +mlr +twp +twp +nTl +nTl +nTl +nTl +nTl +nTl +pDi +twp +qAA +twp +twp +twp +oQE +twp +twp +hOy +saC +saC +saC +saC +saC +tiQ +jEu +gof +xYD +iTh +gof +loY +loY +nOv +loY +loY +fKi +tkn +rUx +afM +oZI +pqO +saC +saC +tiQ +tiQ +tiQ +seF +hjt +puv +seF +tiQ +tiQ +bjd +sAa +jFd +bQw +bjd +sMl +sPu +sPu +sPu +sPu +pMo +oDK +oDK +oDK +nzH +jjB +mPj +nSg +axN +eJR +mVy +wDj +wDj +wDj +amV +xSv +xSv +xSv +lTV +lTV +wNg +lTV +dCY +qSH +qSH +qSH +qSH +vGp +vGp +vGp +kmr +sBl +dha +xAZ +xOw +kBP +sBl +gUi +jHi +fkj +arm +vbl +bNN +mHU +fkj +fkj +sBl +nAI +xOw +snb +iIL +sBl +ocX +xXg +bIH +bIH +bIH +bIH +bIH +bIH +bIH +bIH +rnB +rnB +rnB +rnB +tTD +tTD +tTD +rnB +rnB +uuX +vNk +qfK +uNp +uNp +ugR +tGh +lBb +cct +gbm +ozn +lSr +vNk +wuy +chR +vGs +vNk +mPP +xgA +acE +xLb +aoW +qzk +ePV +qjO +ylo +cMO +nYn +esk +ylo +yaf +uwT +fWG +uFz +uwT +uwT +uwT +uwT +uwT +rrh +uzI +dDq +dDq +uzI +dDq +dDq +uzI +uzI +uzI +ybz +rzZ +rzZ +rzZ +cpy +cpy +cpy +cpy +abo +ctE +ctE +ctE +ctE +ctE +jas +wFL +nQu +hbO +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(129,1,1) = {" +bMX +saC +tiQ +lwX +bpj +azz +azz +azz +azz +ciS +iZI +iZI +iZI +dDS +fFw +iZI +iZI +twp +nTl +nTl +nTl +nTl +nTl +nTl +twp +rlW +qAA +twp +twp +twp +tAZ +twp +twp +tiQ +saC +saC +saC +saC +saC +tiQ +eQJ +gof +xYD +fxh +trX +hjt +uSg +gof +gof +gof +gof +wRB +gbM +saC +saC +saC +saC +tiQ +tiQ +hhY +nAA +nAA +gof +gof +jLw +tiQ +tiQ +bjd +ifb +ifb +bjd +bjd +gxm +iki +sPu +sPu +sPu +sPu +sPu +sPu +sPu +wef +oSj +cfN +lAa +gjA +qRY +wDj +wDj +xFp +xFp +tEB +qSH +qSH +qSH +qSH +vGp +hSV +vGp +umR +qSH +qSH +qSH +qSH +vGp +vGp +lqA +xZP +sBl +nAI +xUz +nde +nAI +sBl +fkj +fkj +mHU +blP +cyh +mRb +fkj +mtI +fkj +sBl +dha +bSa +xAZ +nAI +sBl +ocX +xXg +wIi +tTK +tTK +tTK +tTK +tTK +tTK +xXg +lUB +rnB +rnB +cpy +rnB +rnB +tTD +rnB +rnB +uuX +vJD +tGh +uNp +uNp +tSN +dsu +vNk +hAy +xMO +ozn +lSr +vNk +ffR +ozn +mnE +vNk +xvl +gWV +vSy +xvl +xvl +qzk +ePV +qjO +ylo +esk +ttC +cMO +ylo +mkm +uwT +fWG +uwT +uwT +pLu +uwT +uwT +uwT +rrh +czB +mFS +mFS +jdP +jdP +jdP +dtT +cgk +tos +vvA +wQa +wQa +wQa +wQa +cpy +cpy +abo +ctE +ctE +ctE +ctE +ctE +ctE +jas +wFL +nQu +fZA +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(130,1,1) = {" +bMX +saC +saC +saC +aLJ +iZI +iZI +iZI +iZI +dDS +fFw +iZI +iZI +dDS +iZI +iZI +iZI +mlr +tAZ +fzN +pDi +pDi +lnb +qAA +mlr +hyx +qAA +tiQ +tiQ +tiQ +tAZ +twp +twp +tiQ +saC +saC +saC +saC +saC +tiQ +eQJ +uwo +nAy +sXf +pEs +bec +fbt +pEs +rZd +erH +erH +klU +oZI +oZI +saC +saC +saC +tiQ +bzZ +vVm +uwo +nAy +nAy +bZx +etF +kwe +tiQ +bjd +ovY +lHe +bjd +bjd +jqI +qSX +iki +sPu +sPu +sPu +sPu +sPu +sPu +kdb +sbA +hIY +iJE +gok +qRY +tCE +mLY +ngV +rYh +tEB +qSH +qSH +qSH +vGp +vGp +hSV +qSH +umR +qSH +qSH +qSH +vGp +vGp +lqA +xFp +pKX +pKX +pKX +kGl +bBm +pKX +pKX +pKX +fkj +fkj +fkj +fkj +fba +fkj +fkj +fkj +pKX +dha +hVW +dpN +nAI +pKX +ocX +xXg +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +gjt +lUB +cpy +cpy +rnB +rnB +tTD +rnB +sKJ +uuX +vJD +fMP +uNp +uOD +uOj +vfj +vNk +bXO +xMO +ozn +mdQ +vNk +gEM +ddK +ftT +vNk +xvl +iit +knK +xvl +xvl +qzk +ePV +qjO +jOF +mys +pLs +iSY +ylo +mkm +uwT +oTD +ycM +miZ +tXW +uwT +uwT +uwT +rrh +czB +mFS +msu +msu +xPH +msu +dtT +cgk +tos +vvA +wQa +wQa +wQa +wQa +wQa +cpy +abo +ctE +ctE +ctE +ctE +ctE +ctE +jas +jGe +nQu +dLC +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(131,1,1) = {" +bMX +saC +saC +ktI +ups +aLJ +aLJ +iZI +iZI +dDS +iZI +cIr +iZI +eOe +iZI +iZI +fFw +mlr +tAZ +rlW +eDQ +eDQ +eDQ +qAA +mlr +rlW +qAA +twp +twp +twp +tAZ +twp +twp +tiQ +tiQ +saC +saC +saC +saC +tiQ +gof +tVC +oZI +pqO +gof +hjt +uSg +gof +ity +oZI +oZI +vNC +oZI +oZI +oZI +saC +saC +tiQ +nuH +aci +wQh +bbQ +egy +rBm +bZx +aMt +tiQ +bjd +ovY +lHe +ovY +bjd +bjd +mnF +pMo +oDK +qAU +qAU +qAU +oDK +oDK +iBj +pdX +mPj +qRY +iJE +qRY +tCE +aeY +xVX +tml +tEB +qSH +qSH +vGp +vGp +lqA +hSV +bRs +voY +pRE +bRs +bRs +bRs +bRs +xFp +tDS +tDS +aFm +jcz +cSR +wyR +uan +aYe +tDS +rHI +rHI +tDS +tDS +rHI +rHI +tDS +gdO +gdO +gdO +eEo +mQz +gdO +gdO +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +fJc +rnB +cpy +cpy +rnB +tTD +tTD +tTD +uuX +vJD +qdS +ugR +uNp +uOD +tGo +vNk +vwH +xMO +ozn +mnE +vNk +ffR +kSs +ftT +vNk +lJa +xhD +bsG +lJa +aoW +qzk +ePV +qjO +ylo +dqu +xyA +dqu +ylo +syB +uwT +xbk +mRx +psQ +fWG +uwT +uwT +uwT +rrh +cDg +mFS +msu +msu +acp +msu +dtT +cgk +tos +vvA +wQa +wQa +wQa +wQa +wQa +cpy +cpy +ctE +ctE +ctE +ctE +ctE +ctE +jas +jGe +nQu +nQu +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(132,1,1) = {" +bMX +saC +saC +saC +ktI +aLJ +aLJ +aLJ +aLJ +dDS +iZI +iZI +iZI +dDS +fpn +iZI +oim +mlr +tAZ +rlW +rlW +eDQ +vgu +gde +ugp +eDQ +qAA +twp +twp +twp +oQE +twp +twp +eDQ +tiQ +saC +saC +saC +tiQ +tiQ +vjl +tVC +oZI +pqO +xfw +tiQ +tiQ +wDQ +aHq +oZI +oZI +vNC +oZI +oZI +oZI +pqO +gof +idX +koC +wwt +uwo +bUz +gNM +bZx +wpB +hVc +vKP +bjd +mnF +gwf +mnF +bjd +bjd +mnF +sPu +sPu +sPu +sPu +mnF +mnF +mnF +bjd +bjd +mPj +gIl +qRY +uWs +wDj +sDQ +jtt +iJb +tEB +qSH +vGp +vGp +lqA +xFp +tDS +tDS +brO +rHI +tDS +rHI +rHI +tDS +tDS +tDS +eRK +grf +qfT +xDM +lwW +vux +jcz +hpF +gdm +gdm +tDS +aNW +oRT +wXt +toD +gdO +xVv +omI +oVR +rXS +gMv +cEO +tTK +yel +hZV +eOX +pdq +tTK +aoZ +kxv +luq +tTK +tTK +fJc +rnB +cpy +cpy +tTD +tTD +tTD +tTD +uuX +vJD +xcJ +ugR +uNp +uNp +tGh +vNk +fko +xMO +xMO +mnE +urv +mnE +xMO +lSr +vNk +lJa +xhD +bsG +xLb +aoW +qzk +ePV +qjO +ylo +ylo +nSd +ylo +ylo +syB +uwT +qTI +fss +noT +fWG +uwT +uwT +uwT +rrh +uzI +jdP +msu +cxa +acp +xPH +dtT +cgk +tos +vvA +wQa +wQa +wQa +wQa +wQa +cpy +cpy +abo +ctE +ctE +ctE +ctE +ctE +jas +lYG +nQu +hcO +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(133,1,1) = {" +bMX +saC +saC +saC +saC +ktI +aLJ +aLJ +dFT +cmB +azz +azz +cMc +cVy +iZI +dJs +svW +mlr +tAZ +rlW +rlW +rlW +rlW +qAA +mlr +pDi +qAA +twp +twp +twp +tAZ +twp +pDi +eDQ +saC +saC +saC +saC +saC +saC +saC +saC +oZI +saC +saC +tiQ +tiQ +gof +tVC +oZI +bQX +sYZ +oZI +oZI +sao +pqO +trX +fKb +gof +tVC +fQF +lmY +lmY +gCA +pqO +gof +qjG +bjd +mnF +bQw +bQw +ovY +bjd +mnF +sPu +sPu +sPu +mnF +wDj +wDj +wDj +wDj +wDj +wDj +tCE +iuT +tCE +wDj +xFp +xFp +eEp +oqN +vGp +vGp +vGp +fvs +tDS +tDS +oiV +fMy +uan +rvB +uan +uYZ +rUO +uap +tDS +tjk +qfV +kYH +lkH +lwZ +jUn +fQh +xmu +hBw +gdm +tDS +wlE +izf +xfP +cGh +gdO +gdO +xxO +oyr +pbN +pdE +gdO +tTK +yel +fdj +mtS +tTK +tTK +khy +dIg +nUi +ets +tTK +fJc +cpy +cpy +rnB +tTD +tTD +tTD +tTD +uuX +vNk +wlw +tGh +xhT +tGh +dsu +vNk +bXO +ozn +xMO +mnE +urv +mnE +ozn +mnE +vNk +xvl +nSB +rPN +xvl +xvl +qzk +ePV +gBy +mUr +kSm +mUr +kSm +mUr +fvV +uwT +uwT +uwT +fWG +fWG +uwT +uwT +uwT +rrh +uzI +jdP +xPH +acp +xPH +xPH +jPV +cgk +tos +vvA +wQa +wQa +wQa +wQa +cpy +cpy +cpy +cpy +ctE +ctE +ctE +ctE +ctE +jas +uCo +sid +glQ +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(134,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +cdj +aLJ +aLJ +aLJ +iZI +iZI +dDS +fFw +iZI +svW +mlr +tAZ +rlW +mlr +mlr +rlW +qAA +mlr +pDi +nkr +tiQ +tiQ +tiQ +wRS +pDi +pDi +vgu +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +saC +qql +swH +hcr +iEi +iEi +iEi +iEi +bnI +gof +hjt +gof +tVC +fQF +lmY +lmY +gCA +pqO +nAA +qjG +bjd +bQw +gwf +gwf +mnF +hIY +mnF +sPu +sPu +mnF +wDj +wDj +kTS +kTS +kTS +wDj +gPl +kTS +kTS +kTS +wDj +xFp +bsY +qSH +umR +vGp +vGp +vGp +fvs +wYK +dKE +oRT +whY +wUq +klA +qQK +qQK +noq +wJR +nZL +kNk +udJ +kZj +oGF +pVo +wGY +fRS +iXZ +lur +oRT +tDS +qOj +vmz +mKM +wJR +fgw +bIw +ptg +uuH +pej +vHS +rEd +tTK +bZn +nyd +mtS +tTK +kRH +pqJ +pfm +veZ +oKr +tTK +fJc +cpy +rnB +tTD +rnB +rnB +tTD +rnB +uuX +vNk +vNk +tFB +uuB +uuB +tMT +vNk +vYP +mnE +mnE +hst +vNk +biq +ozn +mzh +vNk +lgI +xgA +acE +lJa +xvl +qzk +ePV +fWG +fWG +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +fWG +uwT +uwT +uwT +rrh +czB +mFS +msu +msu +msu +msu +jPV +cgk +tos +vvA +wQa +wQa +cex +wQa +wQa +cpy +cpy +cpy +cpy +abo +abo +ctE +ctE +jas +jas +dtF +jas +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(135,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +aLJ +aLJ +aLJ +aLJ +fib +gbQ +jYj +jYj +dFy +weP +hhv +mQx +nTl +nTl +mlr +qAA +mlr +twp +qAA +twp +twp +twp +wRS +pDi +pDi +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +gof +gof +tkn +gof +gof +gof +dcV +gof +gof +gof +idX +lEK +wwt +teW +mcz +bKQ +bnI +qlI +hVc +qjG +bjd +ngJ +gwf +gwf +bQw +hIY +sGn +cTB +cTB +xuX +wDj +kTS +eJR +eJR +lbE +tCE +kTS +eJR +eJR +nhc +tCE +xFp +bsY +qSH +umR +vGp +vGp +vGp +fvs +nZL +lfc +gDW +mhT +sWr +wGY +sWr +krK +nUl +lZa +tDS +uSy +jGU +kZB +lHV +lwW +sWr +qBb +iXZ +iHN +yjO +tDS +rYj +pfs +nUl +dLB +dTY +dwV +dpL +xxw +pej +vHS +rCb +tTK +vwd +skt +lLx +tTK +tTK +tTK +lwa +tTK +tTK +tTK +fJc +cpy +tTD +tTD +tTD +tTD +tTD +tTD +uuX +wIi +vNk +vNk +vJD +vJD +vNk +vNk +vNk +gZn +vNk +vNk +vNk +pxH +xiu +kwF +vNk +xLb +xgA +acE +lJa +qWT +qzk +ePV +cpy +cpy +uwT +uwT +uwT +fWG +fWG +uwT +uwT +cpy +fWG +uwT +uwT +uwT +uwT +rrh +czB +mFS +msu +msu +msu +cxa +jPV +cgk +tos +vvA +cex +cex +eXG +cex +wQa +wQa +cpy +cpy +cpy +cpy +abo +abo +jas +jas +ocD +vpe +mNk +jas +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(136,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +aLJ +aLJ +aLJ +iZI +dDS +iZI +iZI +twp +ugp +wtE +orq +nTl +nTl +ngl +qAA +mlr +twp +qAA +twp +twp +pDi +wRS +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +jDP +kXb +jDP +jDP +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +bHc +qBa +kMG +ktC +qSN +gNC +xBb +cNh +lTi +bjd +ngJ +bQw +dAo +mnF +bjd +bjd +lti +oEi +lti +wDj +kTS +eJR +iJE +mfo +tCE +kTS +rlB +azE +jXd +tCE +xFp +bsY +qSH +umR +vGp +vGp +vGp +fvs +tDS +bXV +dGq +xcE +tDS +iLl +xuk +kHP +wxZ +paE +qhD +usc +nIa +jvu +qZT +cEN +ngY +vEW +iYm +wgf +srC +nIz +qiY +dGq +lur +oRT +iNL +fYL +ptg +nhD +pfN +vHS +rEd +tTK +oWu +uFJ +eFy +lES +csp +szH +sfB +lUz +rKI +ssm +fJc +tTD +tTD +rnB +tTD +tTD +tTD +tTD +uuX +xXg +bht +aGE +uvC +vfC +mJQ +kug +dEP +rMz +xXg +vNk +vNk +fmS +fmS +vNk +vNk +mPP +xgA +bsG +lJa +xvl +qzk +ePV +cpy +uwT +uwT +uwT +fWG +fWG +fWG +fWG +uwT +cpy +uIe +uwT +uwT +uwT +uwT +rrh +cDg +mFS +mFS +jdP +jdP +mFS +jPV +cgk +tos +vvA +eXG +eXG +eXG +eXG +wQa +wQa +wQa +cpy +cpy +cpy +cpy +abo +jas +wQg +vpe +eso +eso +tsm +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(137,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +fmX +aLJ +aLJ +aLJ +iZI +dDS +iZI +iZI +twp +mlr +tAZ +fab +nTl +nTl +mlr +qAA +mlr +twp +qAA +twp +twp +pDi +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +hgP +pHy +opx +xtK +iNM +eIh +bTU +okk +okk +kjF +hwC +mQd +nbj +saC +tiQ +mVe +vVm +teW +iEi +iEi +bnI +qim +dir +tiQ +bjd +bjd +une +lJn +bjd +bjd +bjd +bjd +bjd +bjd +wDj +kTS +hjm +kTS +kTS +tCE +kTS +rlB +eJR +cmv +tCE +xFp +bsY +qSH +umR +vGp +vGp +vGp +fvs +tDS +vge +dGq +lbA +hMb +vWx +xSP +leV +wCM +rmx +tQH +daC +waZ +pVo +wGY +hJG +mEz +iwt +anM +jUn +bJK +cBr +uCh +tRT +fRy +oRT +gdO +gdO +bpo +oVR +qeg +hGr +gdO +tTK +hgO +ahX +gyp +jyO +wFQ +wFQ +xAq +oYv +wQE +ssm +fJc +rnB +tTD +rnB +tTD +tTD +tTD +rnB +uuX +xXg +bht +xXg +xXg +xXg +xXg +xXg +xXg +gIg +xXg +xXg +vNk +vNk +vNk +vNk +vNk +xvl +nSB +jPx +xvl +xvl +qzk +ePV +fWG +uwT +uwT +uwT +uwT +fWG +fWG +fWG +uwT +cpy +uwT +uwT +uwT +uwT +uwT +rrh +uzI +tRR +tRR +uzI +tRR +tRR +uzI +uzI +uzI +vvA +eXG +eXG +eXG +eXG +eXG +wQa +wQa +wQa +wQa +wQa +cpy +cpy +jas +raX +cTZ +suh +vpe +nWc +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(138,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +kst +jXr +aLJ +aLJ +iZI +dDS +iZI +iZI +iZI +mlr +tAZ +rBB +mQx +mlr +eTA +lBi +weP +iFu +kke +gkc +oBN +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +hgP +hgP +opx +okk +was +okk +mdD +woG +okk +kjF +okk +mQd +nbj +sZq +tiQ +tiQ +szi +nAA +nAA +nAA +nOZ +sjT +tiQ +tiQ +saC +bjd +bjd +bjd +bjd +saC +saC +saC +saC +saC +wDj +wDj +wDj +gWp +qCy +uaY +nab +eJR +eJR +hbw +wDj +xFs +bsY +qSH +umR +qSH +vGp +vGp +fvs +wYK +oPf +eSP +gaw +sWr +wGY +xJL +olI +nUl +wJR +tDS +fMM +dGq +ixQ +mEz +koM +wGY +lRF +ojt +nUl +vKo +tDS +pvA +xXE +ykq +riq +tAC +wZC +tNC +qDT +dbA +tNC +drx +iLw +frP +xUT +tHa +stT +eBz +pEj +jyz +tXN +qKD +ssm +fJc +tTD +tTD +tTD +tTD +tTD +tTD +rnB +xDb +xXg +bht +xXg +mJQ +xXg +lWW +xXg +xXg +xXg +xXg +xXg +xXg +hxY +rHX +gxZ +aoW +lJa +xhD +bsG +lJa +aoW +qzk +ePV +fWG +fWG +uwT +tXW +uwT +uwT +fWG +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +cwL +ybz +ybz +cwL +ybz +ybz +ybz +cwL +ybz +vvA +wPN +eXG +eXG +wPN +eXG +cex +wQa +wQa +wQa +wQa +wQa +cpy +jas +dZz +eso +wJq +wNX +qSa +jas +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(139,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +jXr +jXr +jXr +aLJ +dDS +iZI +iZI +svW +svW +tAZ +rlW +fnL +iFu +xKg +qAA +svW +svW +rlW +rlW +wNz +mlr +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +hgP +hgP +opx +okk +was +okk +mdD +woG +gmF +kjF +okk +mQd +nbj +sZq +sZq +tiQ +cPx +cPx +cPx +tiQ +tiQ +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +sYl +saC +saC +utq +saC +qSH +qSH +dOv +kTS +rlB +eJR +qRY +ouc +ash +bsY +qSH +umR +qSH +vGp +vGp +fvs +tdj +kNk +cOR +ceE +bOz +bOz +vqC +riT +jIU +oRT +wyc +dSA +eSP +kLk +pTN +riT +bOz +bOz +jHe +kgp +vKo +tDS +bGO +dGq +qIL +wJR +gdO +dwV +pXa +uuH +pfN +lqD +ulj +tTK +eOX +tHl +nht +xHl +piI +hPp +fgm +tXN +tTK +tTK +fJc +sKJ +tTD +tTD +tTD +tTD +tTD +rnB +rnB +uuX +bht +gIg +ceG +sRY +xXg +kzr +kug +iVm +xXg +xXg +xXg +xXg +qLQ +fwL +aoW +lJa +xhD +bsG +lJa +aoW +qzk +ePV +fWG +fWG +uwT +uwT +xxk +ycM +xdX +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +ybz +ybz +ybz +ybz +ybz +ybz +ybz +ybz +ybz +vvA +uja +uja +uja +eXG +eXG +cex +wQa +wQa +wQa +wQa +wQa +oSv +jas +bdU +vpe +eso +wNX +lKV +jas +vvA +eXG +cpy +cpy +cpy +cpy +cpy +bMX +"} +(140,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +jXr +jXr +cTX +iZI +iZI +iZI +svW +gQb +gXH +gXH +gXH +tBX +kNo +svW +rlW +rlW +rlW +qXK +mlr +saC +saC +saC +saC +saC +saC +saC +saC +saC +tqe +nuq +jNJ +jNJ +nuq +vpT +tiQ +okk +was +okk +mdD +woG +okk +kjF +okk +mQd +nbj +sZq +sZq +sZq +sZq +sZq +sZq +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +cYn +qSH +shD +cCH +qSH +qSH +bha +cYn +qSH +eJR +rlB +iJE +qRY +gWp +ash +bsY +qSH +umR +qSH +qSH +vGp +fvs +tDS +tDS +kJY +oRT +scC +cbs +dVu +scC +qmW +qBm +tDS +dLB +ccy +iFq +xas +bhQ +iEd +wJR +yjO +oRT +oRT +tDS +cqa +eSP +kgp +npB +lBz +fVl +mWF +mNE +qeg +poQ +tkQ +tiN +mtS +tHl +mXq +gKQ +xGv +avg +sfS +mlV +tvN +tTK +fJc +sKJ +tTD +tTD +tTD +tTD +tTD +rnB +lLB +xXg +uuD +uuD +uuD +uuD +uuD +uuD +uuD +uuD +uuD +uuD +uuD +lFO +gIg +imT +xvl +xvl +gWV +vSy +xvl +xvl +qzk +ePV +uwT +fWG +fWG +cpy +uwT +tBb +ixP +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +ybz +ybz +ybz +ybz +ybz +ybz +ybz +ybz +ybz +vvA +eXG +eXG +eXG +eXG +eXG +cex +wQa +wQa +wQa +wQa +wQa +oSv +jas +jas +mdN +eso +mdN +jas +jas +vvA +eXG +cpy +cpy +cpy +cpy +cpy +bMX +"} +(141,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +mXC +jXr +kst +mlr +mlr +ugp +mlr +mlr +mlr +mlr +fab +mlr +mlr +mlr +mlr +mlr +mlr +lap +saC +saC +saC +saC +saC +saC +saC +hgP +uzp +nsH +jHb +jHb +jHb +jIR +duw +tiQ +piB +was +okk +dvE +okk +okk +kjF +piB +mQd +nbj +sZq +sZq +sZq +sZq +sZq +sZq +saC +tiQ +tiQ +saC +saC +saC +saC +saC +saC +saC +qSH +qSH +qSH +qSH +qSH +qSH +qRY +eJR +eJR +eJR +eJR +eJR +hcE +sjQ +dZc +wDj +pQm +bsY +qSH +umR +qSH +qSH +qSH +hLi +xFp +tDS +tDS +rHI +pGW +tDS +aqn +rHI +tDS +tDS +tDS +rHI +kGl +bBm +rHI +tDS +tDS +rHI +rHI +rHI +tDS +tDS +wnq +xZv +wJR +lEI +gdO +gdO +riP +oVR +rXS +eKC +gdO +tTK +ish +uFJ +ejd +tTK +tTK +tTK +gie +kNW +fTb +tTK +fJc +rnB +cpy +cpy +tTD +rnB +tTD +rnB +uuX +uuD +uuD +kXK +vXN +uuD +tuz +jjX +uuD +uuD +lKA +tJd +uuD +uuD +xXg +imT +xvl +xvl +seT +knK +xvl +xvl +qzk +ePV +uwT +uwT +fWG +cpy +fWW +tlr +kcC +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +cwL +ybz +ybz +cwL +ybz +ybz +ybz +cwL +ybz +vvA +eXG +eXG +eXG +eXG +cex +wQa +fdh +wQa +wQa +fdh +wQa +wrI +ybz +jas +jas +dtF +jas +jas +ybz +fUP +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(142,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +dkC +dkC +dkC +tiQ +twp +twp +twp +twp +trQ +twp +tiQ +tiQ +cYQ +cYQ +cYQ +tiQ +tiQ +saC +saC +saC +saC +saC +saC +hgP +hgP +nsH +jHb +jHb +jHb +jHb +duw +tiQ +mua +mua +aPx +vkO +aPx +aPx +mua +mua +mua +nbj +sZq +sZq +mZW +mZW +sZq +sZq +sZq +saC +saC +saC +saC +saC +saC +saC +saC +saC +qSH +qSH +qSH +qSH +qSH +qSH +qSH +eJR +qSH +qSH +eJR +iJE +eJR +azE +dZc +wDj +xFp +bsY +qSH +qQB +qDV +xSv +xSv +xSv +cNb +aSg +aSg +aSg +aSg +aSg +aSg +aSg +pKg +xFp +tDS +eMQ +aXi +xwA +oiL +tDS +dJX +uYZ +uan +uan +utr +tDS +tDS +nfe +uAv +tDS +gdO +ifK +cly +uuH +pej +lqD +khk +rXK +vuj +uFJ +niO +tTK +tTK +tTK +iqf +kNW +sVp +tTK +fJc +rnB +rnB +cpy +sKJ +tTD +tTD +rnB +uuX +uuD +oyX +pCD +rOg +urU +sop +pNY +mTY +mco +pNY +vau +oQF +uuD +xXg +imT +uxq +uFZ +xhD +bsG +lJa +aoW +qzk +ePV +uwT +uwT +fWG +fWG +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +uzI +tRR +tRR +uzI +tRR +tRR +uzI +uzI +uzI +vvA +wQa +eXG +eXG +cex +wQa +wQa +fII +fII +fII +wQa +wQa +eXG +wrI +rzZ +rzZ +rzZ +rzZ +rzZ +fUP +eXG +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(143,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +mlr +mlr +mlr +mlr +fab +mlr +tiQ +qdu +cIF +cIF +cIF +hVg +tiQ +saC +saC +saC +saC +saC +saC +hgP +hgP +nsH +jHb +jIR +jHb +jHb +duw +tiQ +saC +luS +gmF +dvE +okk +okk +kjF +cPx +ljA +woR +sZq +sZq +mZW +mZW +sZq +sZq +sZq +saC +saC +saC +saC +saC +saC +saC +saC +cYn +qSH +qSH +qSH +qSH +sYl +tOt +iaM +sYl +cCH +yeH +bha +eJR +eJR +eJR +lvO +wDj +xFp +bsY +qSH +qSH +umR +qSH +qSH +qSH +qSH +qSH +qSH +qSH +vGp +vGp +vGp +vGp +pZo +fvs +tDS +nFK +iss +lbA +fzD +cua +nIH +xkH +iMn +bYK +oRT +hPg +teR +wJR +hUv +vpN +gdO +iwZ +ptg +oNl +pej +lqD +khk +rXK +dcl +uFJ +gyp +swy +wwW +kPW +bFz +kSq +tvN +tTK +fJc +rnB +rnB +cpy +sKJ +tTD +tTD +rnB +uuX +vFU +mfm +rMd +xBs +uuD +vtm +pNY +eZT +gcy +pNY +oGE +sDt +eYG +xXg +imT +awL +knK +xgA +bsG +xLb +aoW +qzk +ePV +uxT +sps +sps +sps +dsl +uwT +uwT +uwT +uwT +uwT +tXW +uwT +uwT +uwT +uwT +rrh +czB +adA +uJq +bnq +mFS +mFS +dtT +cgk +tos +vvA +eXG +eXG +eXG +wQa +wQa +wQa +wQa +cjb +wQa +wQa +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +bMX +"} +(144,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +mUZ +dnh +mUZ +mUZ +jEu +nTl +uvq +uvq +uvq +kSK +nTl +tiQ +xMA +fNm +get +get +hQO +saC +saC +saC +saC +saC +hgP +hgP +hgP +diy +nsH +jHb +jHb +jHb +jHb +duw +tiQ +saC +was +okk +dvE +okk +okk +kjF +iRb +mQw +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +saC +tiQ +tiQ +tiQ +saC +saC +saC +qSH +qSH +qSH +qSH +fdS +qSH +cpy +tOt +qSH +cYn +xei +lUw +lOF +kTS +kTS +kTS +wDj +wuZ +wuZ +dSf +dSf +piZ +dSf +dSf +aUI +qSH +qSH +qSH +qSH +vGp +vGp +cpy +vGp +pZo +fvs +tDS +aPo +vkj +lbD +rmx +tQH +jZa +dPG +pVo +jzR +qQK +vPa +dZN +qQK +cPc +hpF +dvh +pyK +wlD +uuH +pfN +vHS +ulj +rXK +buP +uFJ +uOG +ixg +tmD +fgm +qHP +pZr +tTK +tTK +fJc +rnB +rnB +tTD +tTD +rnB +tTD +rnB +uuX +bEa +pCD +oGE +rPu +uuD +xeU +aPs +dwO +mbr +iBJ +rOg +wZr +eYG +xXg +imT +xvl +xvl +gWV +vSy +xvl +xvl +qzk +ePV +ppD +xkO +xkO +xkO +tKC +uwT +uwT +uwT +uwT +fWG +tXW +tXW +uwT +uwT +uwT +rrh +czB +adA +mRw +msu +xPH +msu +dtT +cgk +tos +vvA +eXG +eXG +eXG +wQa +wQa +wQa +wQa +wQa +wQa +wQa +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +bMX +"} +(145,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tLW +mUZ +jpH +pyh +mUZ +mUZ +dnh +mUZ +mUZ +mUZ +juW +dnh +tiQ +cIF +fOM +geu +get +cIF +tiQ +saC +tiQ +saC +saC +hgP +hgP +hgP +hgP +nsH +jHb +jHb +jHb +jHb +duw +tiQ +saC +was +okk +mdD +woG +okk +kjF +cPx +mSl +mZX +sZq +sZq +sZq +nGc +sZq +sZq +sZq +sZq +sZq +saC +tiQ +tiQ +saC +saC +saC +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +dRL +dRL +dRL +dRL +ogt +gYp +ogt +dRL +dRL +dRL +ogt +ogt +ftz +ogt +dRL +guE +aUI +qSH +qSH +qSH +qSH +vGp +cpy +cpy +pZo +fvs +tDS +jAG +eqI +pzg +qLe +tDS +nCW +ccr +pVo +sWr +ngY +ngY +qKk +oXU +lur +sat +gdO +gdO +uEi +uuH +pfN +tXu +gdO +tTK +aqv +rzl +nFh +lux +olQ +nNQ +wKK +lYY +eWt +ssm +fJc +rnB +rnB +tTD +rnB +rnB +tTD +rnB +uuX +eYG +ybn +ozF +xvo +mxO +mIl +ugX +pie +fRT +qnM +rOg +aTM +eYG +xXg +imT +xvl +xvl +seT +knK +xvl +xvl +qzk +ePV +ppD +xkO +iis +jhi +ujy +uwT +uwT +uwT +uwT +fWG +fWG +uwT +uwT +uwT +uwT +rrh +cDg +sFJ +mRw +msu +xPH +msu +dtT +cgk +tos +vvA +eXG +eXG +eXG +eXG +wQa +wQa +wQa +wQa +wQa +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(146,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tLW +mUZ +tKx +eay +elb +elb +emy +uOe +uOe +uOe +deO +izm +tiQ +ovW +dLA +yjj +cIF +trE +tiQ +saC +tiQ +hgP +aPY +hgP +hgP +rVN +hgP +nsH +jHb +jHb +jHb +jIR +duw +tiQ +saC +was +aCN +mdD +woG +okk +kjF +tiQ +tiQ +nbj +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +saC +tiQ +tiQ +saC +saC +saC +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +dRL +dRL +oby +dRL +dRL +uSm +uSm +hTC +dRL +dRL +dRL +xBE +uSm +fND +bQv +dRL +dRL +guE +aUI +qSH +qSH +qSH +vGp +vGp +cpy +pZo +wCG +tDS +tDS +rHI +rHI +tDS +tDS +nCW +ccr +mhT +sWr +xOx +wGY +azK +iYm +nUl +wJR +dvh +owj +wlD +oVR +qeg +vHS +sFu +tTK +kGG +uFJ +kFN +uzU +evJ +bvZ +bNV +nZJ +eWt +ssm +fJc +rnB +rnB +tTD +rnB +rnB +tTD +tTD +uuX +uuD +aXH +whI +tJv +mxO +hFC +pNY +ylp +scc +pNY +eMk +wBP +uuD +xXg +imT +aoW +lJa +xhD +bsG +lJa +aoW +qzk +ePV +ppD +xkO +xkO +xkO +tKC +uwT +uwT +uwT +fWG +fWG +uwT +uwT +uwT +uwT +fWG +rrh +uzI +jdP +xPH +acp +acp +xPH +dtT +cgk +tos +vvA +eXG +eXG +wQa +wQa +wQa +wQa +wQa +eXG +eXG +eXG +eXG +eXG +wQa +wQa +wQa +wQa +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +bMX +"} +(147,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +mUZ +tKx +qka +qka +qka +qka +qka +qka +seY +cjh +juW +tiQ +tiQ +soK +get +get +awx +tiQ +tiQ +tiQ +hgP +hgP +hgP +hgP +hgP +hgP +nsH +jHb +jHb +jHb +jHb +duw +tiQ +saC +was +gVB +mdD +woG +okk +kjF +tiQ +jPw +jPw +npx +sZq +sZq +sZq +sZq +sZq +sZq +nGc +sZq +sZq +saC +tiQ +tiQ +saC +saC +qSH +qSH +qSH +qSH +cYn +cpy +cpy +cpy +dRL +lmj +xCT +lmj +dRL +uSm +xCT +hTC +dRL +dRL +uxl +xCT +xCT +qMd +xCT +heG +dRL +dRL +guE +aUI +qSH +qSH +qSH +vGp +vGp +pZo +bRm +tDS +crU +jPR +jPR +dCy +wTK +pph +gsG +ylY +wGY +bOz +bOz +iwO +bOz +xNK +dMg +gdO +wBb +ptg +jcW +rXS +ceW +vAN +tTK +wzw +lVB +eFy +pGm +kgB +nOd +cIO +kgB +eOD +ssm +fJc +rnB +rnB +tTD +rnB +tTD +tTD +tTD +uuX +uuD +uuD +whI +whI +mxO +tEV +vXN +pNY +xwj +uUV +oGd +uuD +uuD +xXg +imT +aoW +xLb +xhD +bsG +xLb +aoW +qzk +ePV +ppD +xkO +kHB +jhi +ujy +uwT +uwT +uwT +cpy +fWG +fWG +uwT +uwT +uwT +fWG +rrh +uzI +jdP +msu +msu +acp +msu +dtT +cgk +tos +vvA +wQa +cex +cex +cex +wQa +syH +lBw +lBw +lBw +goT +eXG +kfG +wQa +wQa +tJa +tJa +wQa +eXG +eXG +eXG +eXG +eXG +wPN +eXG +cpy +cpy +bMX +"} +(148,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tLW +mUZ +cNA +sBp +sBp +mNm +mNm +qka +qka +qka +hMr +eUa +izm +tiQ +tiQ +get +get +lCW +tiQ +tiQ +hgP +hgP +hgP +hgP +hgP +toy +hgP +nsH +jIR +kba +kba +jHb +duw +tiQ +saC +was +okk +dvE +okk +okk +kjF +tiQ +jPw +jPw +jPw +sZq +sZq +sZq +sZq +sZq +sZq +mZW +sZq +sZq +saC +saC +tiQ +saC +saC +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +dRL +dRL +dVM +dRL +dRL +sxi +xCT +qXA +dRL +pwn +bvU +xCT +tMp +qjr +xCT +xCT +uvn +dRL +dRL +oBp +qSH +qSH +qSH +vGp +vGp +pZo +bRm +tdj +nCW +pQB +qQK +gng +aRX +vPa +sWr +pVo +lur +tWk +pzx +jWe +ppd +jWe +vlr +gdO +bIt +wlD +cNU +rdT +ceW +dwV +tTK +vwd +puy +nBA +tTK +tTK +tTK +lwa +tTK +tTK +tTK +fJc +rnB +rnB +tTD +tTD +tTD +tTD +tTD +hob +xXg +uuD +uuD +uuD +uuD +uuD +nFS +rWP +vtd +uuD +uuD +uuD +viG +xXg +imT +xvl +xvl +iWe +knK +xvl +xvl +qzk +ePV +ppD +xkO +xkO +xkO +tKC +uwT +uwT +uwT +cpy +cpy +fWG +uwT +uwT +uwT +fWG +rrh +uzI +mFS +mWd +xPH +xPH +xPH +jPV +cgk +tos +vvA +wQa +wQa +eXG +dkX +rBd +ewE +xyG +xyG +xyG +iIQ +rBd +sfO +eXG +wQa +wQa +wQa +eXG +eXG +eXG +eXG +eXG +jjG +eXG +cpy +cpy +cpy +bMX +"} +(149,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tLW +mUZ +dCR +mUZ +mUZ +mUZ +tKx +qka +qka +qka +eay +pyh +juW +mUZ +tiQ +trE +cIF +tiQ +tiQ +tiQ +hgP +hgP +hgP +hgP +hgP +hgP +hgP +qDe +upx +upx +upx +upx +dHH +tiQ +pkg +qOU +eIh +bTU +okk +okk +kjF +tiQ +jPw +jPw +jPw +nuG +mZX +sZq +sZq +sZq +mZW +mZW +sZq +sZq +lJl +ntN +tiQ +saC +saC +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +dRL +caF +uSJ +lmj +dRL +chX +fzE +uSm +ogt +hEd +oBf +xCT +tMp +qsi +xCT +rsq +xCT +uSm +ogt +oBp +qSH +qSH +qSH +qSH +vGp +pZo +bRm +nZL +hyW +atE +ngY +oGF +iTF +sWr +sWr +oMi +nUl +rDq +tDS +bQc +pvP +rmx +ixp +gdO +gdO +dWI +uuH +tov +hGr +gdO +tTK +mtS +tHl +qZg +tTK +xVe +tiF +pfm +aCT +oKr +tTK +fJc +rnB +rnB +tTD +tTD +tTD +rnB +rnB +rnB +uuX +xXg +xXg +xXg +xXg +rWP +vXN +rOg +xwj +rWP +xXg +xXg +xXg +xXg +imT +xvl +xvl +nSB +jPx +xvl +xvl +qzk +ePV +kIV +mUr +mUr +apS +wRk +uwT +uwT +uwT +cpy +cpy +fWG +uwT +uwT +uwT +fWG +rrh +fkY +sFJ +xvg +wTt +vcR +msu +jPV +cgk +tos +vvA +wQa +dkX +rBd +nPb +ohH +sQs +xyG +gCH +uHt +uHt +iuB +jGp +rBd +sfO +eXG +eXG +eXG +eXG +eXG +eXG +eXG +jjG +eXG +eXG +cpy +cpy +bMX +"} +(150,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +czC +czC +czC +czC +mUZ +tKx +qka +qWD +xPJ +jAx +eay +hcY +mUZ +tiQ +aDq +tiQ +tiQ +tiQ +tiQ +tiQ +opx +opx +opx +tiQ +tiQ +tiQ +tiQ +tiQ +opx +opx +opx +tiQ +tiQ +mua +mua +sUv +gSO +wlI +sUv +mua +tiQ +tiQ +tiQ +tiQ +tiQ +nAC +kBK +kBK +kBK +nRK +kBK +kBK +kBK +mqA +tiQ +tiQ +saC +saC +qSH +cYn +qSH +qSH +cpy +cpy +cpy +cpy +dRL +iRn +msB +oBx +xCJ +kXG +qxX +ptm +gTh +pod +oBx +nTg +nTg +iAZ +xCT +xCT +xCT +uSm +ogt +oBp +qSH +qSH +qSH +qSH +vGp +pZo +bRm +nZL +nCW +pfs +kNe +sWr +dPG +wGY +sWr +xxU +smN +pjQ +jUz +nIH +xkH +wci +sHq +gdO +sFu +meG +vYu +rXS +tOQ +qBO +tTK +wJv +bfL +nxw +tTK +dWU +nUi +pfm +gUC +nkL +tTK +fJc +rnB +rnB +tTD +rnB +rnB +fEP +bIH +bIH +xXg +xXg +xXg +xXg +xXg +rWP +emc +pNY +wWw +rWP +xXg +xXg +xXg +xXg +imT +xvl +xvl +fNN +iZm +xvl +xvl +qzk +ePV +uwT +uwT +fWG +fWG +fWG +uwT +uwT +cpy +cpy +cpy +fWG +fWG +uwT +uwT +fWG +rrh +fkY +sFJ +xvg +kMS +xJB +hnl +jPV +cgk +tos +vvA +dkX +nPb +iuB +uHt +uHt +rji +rji +gCH +weV +vAP +uHt +uHt +xyG +jGp +sfO +eXG +eXG +eXG +eXG +eXG +eXG +jjG +eXG +eXG +cpy +cpy +bMX +"} +(151,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +mnq +elb +pyh +udF +mUZ +tKx +qka +qka +mNm +qka +qka +vZb +mUZ +dnh +mUZ +mUZ +saC +tiQ +tiQ +tiQ +okk +okk +okk +saC +saC +saC +saC +okk +okk +okk +okk +wXK +mua +vac +nLY +eIh +bOE +woG +okk +vKr +fgF +tiQ +saC +saC +tiQ +ifs +ifs +ifs +ifs +sUv +ifs +ifs +ifs +ifs +tiQ +tiQ +tiQ +saC +qSH +qSH +qSH +eCe +qSH +cpy +cpy +cpy +dRL +uhN +gQu +lmj +dRL +uSm +jAV +uSm +ogt +sCG +oBR +pjT +qly +qty +reo +xCT +xCT +uSm +ogt +oBp +vGp +qSH +qSH +qSH +qSH +pZo +bRm +nZL +hyW +reO +mEx +sWr +lxZ +lHV +wGY +sWr +srn +bIz +rmx +dGq +oGF +iuw +axr +gdO +hqC +yle +oVR +rXS +lqD +unu +tTK +tTK +fhO +wDz +tTK +tTK +qWr +oGJ +luq +vAe +tTK +fJc +rnB +tTD +tTD +rnB +fEP +xXg +cUG +cUG +cUG +cUG +cUG +cUG +cUG +cUG +jnf +wao +xlp +cUG +cUG +cUG +cUG +cUG +cUG +cUG +ybX +swF +fzV +mcL +cUG +nIl +ePV +uwT +uwT +fWG +fWG +fWG +uwT +uwT +cpy +cpy +cpy +fWG +tXW +uwT +uwT +fWG +rrh +fkY +mFS +hIC +jdP +aPB +aPB +jPV +cgk +sbh +waA +nPb +xyG +lUc +jMy +qGI +uMr +uMr +gCH +wDa +vbF +kBj +dIi +pLY +pLY +jGp +rBd +sfO +eXG +eXG +eXG +eXG +eXG +pvW +eXG +cpy +cpy +bMX +"} +(152,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +rin +qka +hMr +jGJ +mUZ +tKx +qka +qka +qka +mNm +mNm +wEA +elb +elb +elb +pyh +saC +saC +saC +ifs +mHI +mHI +mHI +mHI +saC +saC +mHI +heR +nMH +mUM +mHI +piz +lmn +hKU +okk +okk +woG +woG +okk +okk +vKr +sbt +mHI +bHI +mHI +mHI +mHI +mHI +piz +piz +mHI +mHI +mHI +mHI +sZr +saC +saC +saC +saC +dJt +eCe +cYn +eCe +eCe +cpy +cpy +dRL +dRL +dVM +dRL +dRL +sxi +xCT +qXA +dRL +gHf +oBR +ppK +qws +qNK +reQ +xCT +gBS +dRL +dRL +oBp +vGp +vGp +qSH +qSH +qSH +umR +bRm +tDS +lll +bOG +nSG +gbk +rcd +lHY +mBc +lur +tYi +lGH +ccy +xXE +oGF +iNE +gPk +gdO +ggv +yle +uuH +pfN +fza +iwZ +tTK +mtS +tCi +tje +kDs +tTK +tTK +tTK +tTK +tTK +tTK +fJc +rnB +rnB +tTD +rnB +uuX +cUG +cUG +sxa +jfn +tVU +lKB +lJF +dsS +mSs +twR +tID +lHo +cUG +tJK +mQj +lzM +cTM +ahA +tIu +mHL +xRw +uaI +mEw +cUG +xzK +toe +uwT +uwT +fWG +fWG +fWG +uwT +uwT +uwT +cpy +fWG +tXW +uwT +uwT +uwT +uwT +rrh +uzI +dDq +dDq +uzI +uzI +uzI +uzI +uzI +uzI +xyG +xyG +xyG +htb +pXu +cDv +tla +rji +gCH +weV +uDV +weV +wDa +weV +xyG +kHu +xyG +rnq +rnq +sfO +eXG +eXG +eXG +eXG +eXG +cpy +cpy +bMX +"} +(153,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +uKe +sBp +vvk +cYQ +mUZ +mNm +mNm +qka +qka +mNm +mNm +fSi +qka +qka +qka +hMr +mUZ +saC +okk +ifs +okk +lgr +eIh +eIh +eIh +qwH +eIh +mWT +eIh +eIh +eIh +eyw +fbg +okk +okk +woG +mua +mua +woG +okk +okk +sbt +okk +fCh +okk +okk +okk +wXK +wXK +wXK +wXK +wXK +okk +okk +sZr +saC +saC +saC +saC +eCe +eCe +qSH +qSH +eCe +cpy +cpy +dRL +lmj +xCT +lmj +dRL +kwb +xCT +uSm +dRL +dRL +vZX +pGg +qxg +qPU +rfk +kgn +dRL +dRL +qYP +jjY +vGp +vGp +qSH +qSH +qSH +umR +bRm +tdj +oVX +xXE +kAj +azJ +tgj +svo +bqo +xcj +rDq +tDS +tEj +gDl +ngY +iuw +axr +gdO +gdO +wlD +uuH +pfN +vHS +gdO +tTK +feV +uOG +uOG +xfn +vwd +xFJ +mtS +eOX +mtS +tTK +fJc +rnB +rnB +tTD +rnB +uuX +cUG +fUp +wgR +tum +pRH +pRH +pRH +pRH +tum +tum +pRH +gEd +ubN +pRH +pRH +pRH +tum +pRH +pRH +tum +pYu +pRH +vrF +cUG +ePV +xxk +ycM +tGb +fWG +fWG +fWG +uwT +uwT +uwT +fWG +uwT +tXW +uwT +uwT +uwT +uwT +pgA +qPM +xzK +xzK +uzI +uzI +uzI +uzI +xyG +xyG +xyG +weV +weV +dGf +jpb +ghh +weV +weV +gCH +weV +weV +weV +wDa +weV +weV +weV +xyG +xyG +xyG +jGp +sfO +eXG +eXG +eXG +eXG +cpy +cpy +bMX +"} +(154,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +dKO +cYQ +mUZ +uDC +mNm +mNm +qka +mNm +mNm +fSi +dxV +maz +dxV +hMr +mUZ +wAx +okk +ifs +okk +mdD +woG +woG +okk +fCh +okk +woG +woG +woG +okk +jtC +sUv +woG +woG +mua +tiQ +mua +mua +woG +woG +sbt +okk +fCh +woG +woG +woG +wXK +wXK +wXK +mee +mee +lpy +hZj +sZr +saC +saC +saC +saC +saC +eCe +qSH +qSH +qSH +eCe +cpy +dRL +dRL +sxi +dRL +dRL +vnV +rNj +hxe +dRL +dRL +dRL +sxi +tQR +qFV +gXD +dRL +dRL +qYP +jjY +vGp +vGp +vGp +vGp +qSH +qSH +umR +bRm +nZL +kNk +udJ +dFd +arV +bkt +dsL +iQL +nUl +sJX +ccy +qpm +azK +wGY +lur +teR +ehy +dwV +ptg +uuH +pej +lqD +reM +tTK +mCD +xfn +uOG +uOG +kpb +uOG +ofv +xfn +oXH +tTK +fJc +rnB +tTD +tTD +tTD +uuX +cUG +fOT +tID +wma +eaB +wma +twR +twR +twR +twR +uaI +tID +qXG +tID +tID +fld +mkW +bdH +uaI +tID +xRw +tID +ahT +cUG +ePV +rcO +tBb +xdb +uwT +tXW +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +rrh +xzK +uzI +uzI +uzI +xyG +jVq +gxp +fPO +ufR +jVq +gxp +fPO +ufR +jVq +gxp +fPO +ufR +jVq +gxp +fPO +ufR +jVq +gxp +fPO +ufR +jVq +xyG +jGp +sfO +eXG +eXG +eXG +cpy +cpy +bMX +"} +(155,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +keC +cNA +lps +mNm +foO +hpL +dAT +toA +ani +vEU +gui +rTa +eIh +cLp +eIh +bOE +woG +woG +okk +fCh +okk +woG +woG +woG +okk +okk +pnX +woG +woG +tiQ +tiQ +tiQ +mua +woG +woG +sbt +okk +wXK +lpy +lpy +lpy +wXK +wXK +wXK +mee +woG +woG +okk +sZr +saC +saC +saC +saC +saC +qSH +qSH +qSH +qSH +cYn +gwC +cpy +dRL +dRL +dRL +dRL +dRL +dRL +dRL +dRL +dRL +dRL +ogt +ogt +ftz +ogt +dRL +pGY +jjY +vGp +vGp +vGp +vGp +vGp +vGp +qSH +umR +bRm +tdj +kNk +cMJ +oGF +dkq +iBr +wGY +eUX +lur +pvS +iCl +xXE +wGY +wGY +iuw +axr +gdO +mXr +nWX +hmJ +poQ +qKM +gHk +tTK +mtS +xfn +xfn +uOG +kpb +xfn +uOG +uOG +dWt +tTK +fJc +rnB +rnB +tTD +rnB +uuX +cUG +tmP +tID +nMD +uQf +fsz +wma +uQf +vgb +twR +vDr +ubb +cUG +cAh +uaI +vBN +arq +anv +aOj +tID +rzR +uaI +mlf +cUG +ePV +fWW +tlr +xdt +uwT +uwT +uwT +xxk +ycM +tGb +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +uzI +uzI +uzI +iuB +pab +xYA +aiP +xYA +xYA +xYA +aIp +aIp +aIp +xYA +xYA +aiP +xYA +xYA +aIp +aIp +aIp +aIp +aIp +xYA +aiP +xYA +jYr +iuB +aVa +eXG +eXG +wQa +cpy +cpy +bMX +"} +(156,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +szE +dRm +jGy +gEZ +ctM +tiQ +tiQ +mNm +mUZ +tKx +mNm +qka +fSi +qHn +mzM +qHn +hMr +mUZ +wAx +gmF +ifs +okk +okk +okk +okk +aCN +fCh +okk +frv +iwp +gmF +okk +gVB +sUv +okk +sdO +woG +tiQ +mua +woG +okk +okk +sbt +wXK +wXK +okk +okk +okk +sdO +wXK +wXK +okk +okk +dRR +gmF +sZr +saC +saC +saC +saC +saC +qSH +qSH +qSH +qSH +qSH +eCe +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +bFZ +bFZ +bFZ +tXP +cwy +jnm +jjY +vGp +vGp +vGp +vGp +vGp +vGp +vGp +qSH +yaF +nor +tdj +nCW +gSF +kNe +rUr +waZ +wGY +oGF +lur +qni +nrp +xXE +lCh +cpG +dRX +tjs +gdO +bCM +iYJ +mNE +qMa +wdx +fYM +tTK +gvf +gvf +gvf +gvf +tTK +jpE +mtS +mtS +lzq +tTK +fJc +rnB +tTD +tTD +rnB +uuX +cUG +uLg +nMD +wXa +uQn +vPz +bPs +uQn +vgw +mlf +vDr +ubb +wao +ubb +tID +uaI +kxq +cQm +cIA +uKw +dKd +oaq +dQe +cUG +ePV +uwT +uwT +uwT +uwT +uwT +uwT +rcO +tBb +ixP +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +rrh +xzK +uzI +uAj +xyG +gVf +xYA +xYA +xYA +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +xYA +aIp +kcR +xyG +cDi +eXG +wQa +wQa +cpy +cpy +bMX +"} +(157,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +eTE +efo +eqG +eqG +rhD +eWN +ndc +tiQ +tiQ +ezp +eGQ +eGQ +bgF +nne +qka +mNm +mNm +hMr +mUZ +wAx +okk +ifs +wPb +hDR +hDR +hDR +hDR +saC +saC +hDR +wCA +hDR +hDR +wPb +dyF +oij +okk +okk +woG +woG +okk +okk +mRv +bsj +wPb +hDR +hDR +hDR +hDR +hDR +hDR +hDR +hDR +hDR +hDR +hDR +sZr +saC +saC +bUN +saC +saC +cYn +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +lyP +vGp +vGp +vGp +itJ +lTV +lTV +lTV +lTV +lTV +lTV +lTV +lTV +lTV +lTV +xSv +tWE +bRm +tDS +hyW +wcc +vqv +iIs +lHV +pfX +ngY +lur +qni +qqa +xXE +lOq +oGF +rdB +vIJ +gdO +gdO +gdO +eEo +mQz +gdO +gdO +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +tTK +fJc +rnB +tTD +tTD +tTD +bon +cUG +sLw +sXZ +qRH +vBK +nXC +sXZ +vBK +uQs +nKK +fzf +sHY +wao +xhH +tID +uaI +wqA +xAJ +tID +tID +rzR +vBN +vJA +cUG +ePV +uwT +uwT +uwT +uwT +uwT +uwT +fWW +tlr +kcC +uwT +uwT +uwT +tsn +pAE +pAE +pAE +pAE +pAE +lPq +lPq +uzI +uAj +sQs +xyC +xYA +xYA +xYA +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +aIp +wBx +xyG +lSF +eXG +eXG +wQa +cpy +cpy +bMX +"} +(158,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +wgU +cUY +nxc +bCQ +vGA +bCQ +eCh +adz +eof +mUZ +tKx +qka +qka +qka +qka +mNm +mNm +hMr +mUZ +tiQ +saC +saC +wXK +wXK +okk +sHH +saC +saC +saC +saC +okk +okk +wXK +wXK +mua +gpr +oij +okk +woG +woG +cAP +mRv +msX +tiQ +saC +saC +tiQ +ifs +ifs +ifs +ifs +ifs +ifs +ifs +ifs +ifs +tiQ +tiQ +tiQ +saC +saC +bUN +eCe +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +cpy +ien +mbx +vGp +mRs +vGp +vGp +vGp +vGp +vGv +vGp +vGp +vGp +vGp +vGp +mLY +ngV +rYh +umR +bRm +sjW +jAz +atE +sWr +gvq +sWr +oNe +hfy +muN +qni +iCl +xXE +ngY +ngY +nUl +dYY +gdO +wlh +irI +bdg +lab +her +pgI +gdO +kGx +tWP +tWP +tWP +iwD +iwD +uBR +iIV +tgn +rMa +fJc +rnB +rnB +tTD +tTD +uuX +cUG +sLR +vpD +cSO +vpD +cSO +vpD +cSO +kJO +cSO +aqH +vPz +wao +kPh +uaI +tID +uaI +twR +sgj +tDo +xRw +uUP +xQA +cUG +ePV +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +uwT +uwT +tsn +waQ +snX +snX +vpp +vpp +vpp +vpp +snX +snX +weV +sQs +qle +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +jzZ +xyG +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(159,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +eIZ +tsc +akM +dLZ +akM +bCQ +vAm +dpl +mUZ +tKx +qka +qka +qka +qka +qka +qka +hMr +saC +saC +saC +saC +saC +opx +opx +tiQ +tiQ +tiQ +tiQ +tiQ +opx +opx +opx +tiQ +tiQ +mua +mua +sUv +sUv +sUv +sUv +mua +tiQ +tiQ +tiQ +tiQ +tiQ +rsM +nGC +nGC +nGC +nGC +nGC +nGC +nGC +oiA +tiQ +tiQ +saC +saC +saC +saC +eCe +cYn +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +ien +ien +ien +lyP +gpN +vGp +vGp +vGp +vGp +lyP +cpy +vGp +vGp +vGp +vGp +aeY +xVX +tml +umR +gaE +sRu +aRh +vgx +sMo +kpR +nug +aUF +ktd +pDO +pvS +iCl +jZa +aUF +bOz +pPx +tdd +gdO +dwV +qeg +bHF +kpN +dbA +wZC +dhm +mMk +mYx +jgM +dja +tsb +ioS +rbJ +dJC +tNf +rMa +fJc +rnB +rnB +tTD +tTD +uuX +cUG +cSO +vpD +xUe +tKF +vpD +cSO +cSO +vpD +cSO +cSO +hWz +wao +cCa +mkW +tID +twR +hBF +cUG +cUG +xlp +cUG +cUG +cUG +ePV +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +cpy +fWG +uwT +aUp +snX +snX +xKO +eNO +aTw +sGQ +rxp +oNr +snX +snX +sQs +sol +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +xYA +srS +xyG +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(160,1,1) = {" +bMX +saC +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +aNV +efo +bHO +gkf +aaP +jPW +pVO +oGH +tiQ +mUZ +cNA +sBp +sBp +sBp +sBp +sBp +sBp +vvk +saC +saC +tiQ +saC +saC +saC +hgP +hgP +hgP +diy +tqe +nuq +nZV +nZV +nuq +vpT +tiQ +sHH +was +okk +okk +gmF +okk +kjF +tiQ +jPw +jPw +nqB +nuL +ngo +wbR +wbR +wbR +wbR +wbR +wbR +wbR +oiP +opp +tiQ +saC +saC +saC +saC +eCe +eCe +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +qBQ +kyH +fbA +vGp +vGp +vGv +vGp +lyP +cpy +cpy +lyP +vGp +vGp +vGp +sDQ +jtt +iJb +umR +pty +rrf +tDS +bee +uqo +qyK +bIO +bIO +usZ +xZx +kwm +wJR +wJR +tyL +vKU +woV +hpF +gdO +ybu +nFA +vDa +pfN +rXS +dqh +gdO +gdO +gdO +vKj +gdO +gdO +vKj +gdO +gdO +gdO +gdO +fJc +rnB +rnB +tTD +rnB +uuX +cUG +xlN +cSO +vpD +tKM +vpD +cSO +vpD +cSO +cSO +vpD +fEe +wao +fSr +tMD +tID +wma +cUG +cUG +nTJ +mPc +xlQ +cUG +xzK +toe +uwT +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +fWG +uwT +aUp +vpp +eLO +uhU +sEj +sEj +sEj +qFt +jdP +uGn +vpp +xyG +rFT +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +cSJ +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +xYA +iqX +sQs +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(161,1,1) = {" +bMX +cpy +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +ulg +oQG +ufl +eqG +eqG +uQJ +rDm +tiQ +tiQ +qdL +dCR +jTt +mUZ +mUZ +mUZ +dCR +mUZ +saC +saC +saC +tiQ +hgP +hgP +aPY +hgP +hgP +hgP +hgP +nsH +jMJ +kco +kco +kti +duw +opx +sHH +was +wXK +okk +okk +okk +kjF +tiQ +jPw +jPw +jPw +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +nhb +wbR +wbR +tiQ +saC +saC +saC +saC +saC +eCe +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +rdq +saY +vGp +rwX +vGp +vGp +vGp +cpy +cpy +cpy +cpy +vGp +syW +vGp +vGp +qSH +qSH +umR +hLi +fAq +evS +lUS +bCl +tDS +rHI +rHI +rHI +tDS +tDS +tDS +rHI +rHI +rHI +rHI +tDS +gdO +lEN +qeg +vDa +pfN +rXS +lEN +gdO +wow +wNj +aYM +rXS +gdO +gQQ +kbi +pfQ +kWh +gdO +fJc +rnB +rnB +tTD +rnB +uuX +cUG +tKF +vpD +cSO +cSO +cSO +vpD +vpD +cSO +cSO +ngd +omX +wao +skf +wzt +uaI +twR +cUG +wst +inA +qQe +inA +cAX +ePV +tpr +qJc +dBY +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +uwT +aUp +vpp +ahW +wmJ +piD +uFN +sEj +piD +piD +mFS +cgi +wDa +vJr +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +xYA +wBx +sQs +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(162,1,1) = {" +bMX +cpy +saC +saC +saC +saC +saC +saC +saC +saC +tiQ +tiQ +uJE +hxS +xvq +sIm +gDe +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +saC +saC +saC +tiQ +tiQ +hgP +hgP +hgP +hgP +rVN +hgP +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +was +wXK +mee +woG +okk +kjF +tiQ +jPw +jPw +jPw +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +tiQ +tiQ +saC +saC +saC +saC +saC +qSH +qSH +qSH +cYn +eCe +qSH +qSH +qSH +qSH +qSH +qSH +cpy +ien +ien +ien +wRp +vGp +vGp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +vGp +qSH +qSH +qSH +umR +qSH +hLi +pxM +bFZ +jnm +bFZ +bFZ +bFZ +bFZ +bFZ +eIJ +bFZ +bFZ +bFZ +bFZ +bFZ +umg +gdO +hnH +rXS +uuH +pej +qeg +fRA +gdO +hYn +dsQ +pej +bhv +gdO +vku +tby +tHA +gdO +gdO +fJc +rnB +tTD +tTD +rnB +uuX +cUG +cSO +tdi +sUs +cSO +cSO +vpD +cSO +cSO +sOA +cSO +vPs +wao +aUy +tID +uaI +twR +cAX +inA +gDL +anc +inA +cAX +ePV +fhS +yek +uGy +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +uwT +aUp +vpp +jVU +uhU +sEj +wVU +kWM +uFN +mFS +ptf +vpp +xyG +kFB +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +yfK +sQs +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(163,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +saC +cpy +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +cpy +saC +saC +tiQ +hgP +hgP +hgP +hgP +hgP +hgP +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +was +okk +mee +woG +okk +kjF +tiQ +tiQ +ndP +wbR +nhb +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +qSH +saC +saC +saC +saC +saC +saC +ffG +qSH +qSH +eCe +cpy +cpy +qSH +qSH +qSH +qSH +qSH +cpy +cpy +ien +rwo +vGp +vGp +vGp +qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qQB +uet +uet +uet +uet +uet +uet +uet +uet +uet +uet +uet +uet +vcn +lyP +lyP +vGp +fvs +gdO +vaB +tUf +qtG +rXS +dwV +ybu +gdO +sCz +vku +jsc +bYI +gdO +dBT +cUL +gdO +gdO +gjt +caB +rnB +tTD +tTD +rnB +uuX +cUG +cSO +cSO +jQa +cSO +cSO +cSO +cSO +cSO +vpD +cSO +vPz +cUG +mMh +uaI +bdH +gMX +cAX +dIj +kEd +nmh +lHL +cAX +ePV +rfl +qAM +aph +uwT +uwT +fWG +cpy +cpy +cpy +cpy +cpy +uwT +aUp +snX +snX +iYk +nzb +fQP +lVA +mFS +dcv +snX +snX +sQs +sol +xYA +xYA +xYA +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +aIp +jYr +xyG +lSF +eXG +eXG +eXG +cpy +cpy +bMX +"} +(164,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +cpy +cpy +saC +saC +saC +saC +saC +hgP +hgP +toy +hgP +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +was +okk +woG +woG +okk +kjF +sUv +mUh +ngo +wbR +wbR +wbR +wbR +sNQ +sNQ +wbR +wbR +wbR +wbR +qSH +cYn +saC +saC +saC +saC +saC +saC +eCe +sBX +eCe +eCe +cpy +cpy +cpy +qSH +qSH +qSH +qSH +cpy +cpy +ien +jvo +vGp +vGp +qSH +qSH +qMx +qZY +cpy +cpy +cpy +cpy +mRs +qSH +vFd +tOq +tOq +tOq +aij +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +umR +vGp +vGp +vGp +pzr +gdO +gdO +gdO +eEo +mQz +gdO +gdO +gdO +gdO +gdO +gdO +gdO +gdO +gdO +gdO +gdO +xXg +caB +rnB +rnB +tTD +tTD +rnB +xyn +cUG +cUG +aYg +kBC +vpD +vpD +cSO +vpD +vpD +vrf +nVc +cUG +cUG +cUG +kgM +aaT +glD +cUG +dfE +inA +wTy +cUG +cUG +ePV +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +tXW +uwT +idz +lum +snX +snX +vpp +vpp +vpp +vpp +snX +snX +oYO +sQs +gVf +xYA +xYA +xYA +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +aIp +xYA +xYA +aIp +kcR +xyG +slq +eXG +eXG +eXG +cpy +cpy +bMX +"} +(165,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +saC +saC +hgP +hgP +hgP +hgP +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +mTw +okk +okk +okk +okk +kjF +sUv +mUl +wbR +wbR +wbR +wbR +sNQ +sNQ +wbR +wbR +wbR +wbR +qSH +qSH +qSH +saC +saC +saC +saC +saC +saC +eCe +eCe +eCe +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +ien +ien +ien +mRs +rMR +qfL +qxB +qSH +qSH +mZQ +rpm +vGp +vGv +oQC +lzU +wsC +vxh +vxh +vxh +sfI +lzU +gRD +qSH +qSH +vGp +vGp +vGp +vGp +vGp +qSH +qSH +umR +qSH +vGp +vGp +hLi +xZP +gdO +rEG +nwf +dwV +trv +gdO +ocX +xXg +lxw +lxw +lxw +lxw +lxw +lxw +lxw +caB +rnB +rnB +tTD +tTD +tTD +ruc +xDb +wIi +cUG +cUG +cUG +qXG +qXG +qXG +qXG +qXG +cUG +cUG +cUG +cUG +cUG +cUG +cUG +cUG +cUG +cUG +cAX +cAX +cUG +xzK +ePV +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +tXW +uwT +uwT +idz +uIN +uIN +uIN +uIN +uIN +uIN +cpy +cpy +nDt +iuB +xyC +xYA +aiP +xYA +xYA +xYA +aIp +aIp +aIp +xYA +xYA +aiP +xYA +xYA +aIp +aIp +aIp +aIp +aIp +xYA +aiP +xYA +wBx +iuB +aVa +eXG +eXG +eXG +cpy +cpy +bMX +"} +(166,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +saC +saC +hgP +uzp +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +was +gVB +okk +okk +okk +kjF +dyF +mUl +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +qSH +qSH +qSH +qSH +saC +saC +saC +saC +sBX +sBX +eCe +ycw +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +qSH +ien +amc +qSH +qSH +qSH +qSH +qSH +qSH +rcr +qSH +oQC +lzU +qnb +snO +vxh +vxh +qQA +vxh +vxh +snO +oAu +lzU +gRD +qSH +lyP +vGp +vGp +vGp +vGp +qSH +umR +qSH +vGp +vGp +vGp +wQM +ieX +rEG +vDa +pej +trv +rMa +doo +fJc +tTD +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +rnB +tSm +rnB +ocK +iXn +rgE +mFv +lxw +lxw +qPM +qPM +qPM +qPM +dVP +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +qPM +toe +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +cpy +fWG +uwT +uwT +uwT +uwT +cpy +uwT +uwT +cpy +cpy +cpy +iWN +jxD +xyG +sTR +udA +xsq +res +sTR +udA +xsq +res +sTR +udA +xsq +res +sTR +udA +xsq +res +sTR +udA +xsq +res +sTR +xyG +sAt +svG +eXG +eXG +cpy +cpy +cpy +bMX +"} +(167,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +hgP +hgP +nsH +jOh +jPw +jPw +ktp +duw +opx +okk +was +okk +okk +okk +okk +rKi +dyF +mUl +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +qSH +qSH +qSH +qSH +qSH +cYn +saC +saC +cYn +qSH +qSH +sBX +sDv +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +ien +poZ +qSH +qSH +qSH +qSH +qSH +qSH +qSH +oQC +qnb +vxh +vxh +jFY +nvI +nvI +hvj +oeK +oeK +jFY +vxh +nfJ +oAu +gRD +qSH +lyP +vGp +vGp +vGp +vGp +umR +qSH +qSH +vGp +vGp +sWl +gdO +rEG +vDa +pej +fSP +gdO +doo +fJc +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +rnB +oXZ +rnB +rnB +tSm +uKR +kzu +rnB +rnB +rnB +tTD +tXW +tXW +fWG +fWG +fWG +fWG +uwT +uwT +uwT +uwT +fWG +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +cpy +cpy +fWG +uwT +uwT +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +iWN +jxD +xyG +xyG +xyG +weV +weV +weV +dEm +rji +weV +kJC +gCH +weV +bXN +weV +uMr +hVt +rbP +hVt +viO +myW +myW +sAt +svG +eXG +eXG +eXG +cpy +cpy +cpy +bMX +"} +(168,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +saC +saC +hgP +nsH +jOG +kdL +kdL +kwt +duw +opx +okk +was +okk +woG +woG +wXK +rKi +dyF +mUl +wbR +wbR +wbR +wbR +wbR +wbR +wbR +wbR +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cYn +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +ien +ien +ien +qSH +qSH +qSH +qSH +qSH +oQC +gRj +qnb +vxh +vxh +xIv +xIv +kqT +xIv +qQA +xIv +buD +xIv +kqT +blG +yfm +oAu +lzU +gRD +qSH +vGp +vGp +vGp +qQB +uet +aoi +aoi +dcc +chL +klr +vCG +trG +dwV +pej +rkE +doo +fJc +rnB +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +tTD +tTD +tSm +rnB +oXZ +uKR +rnB +rnB +rnB +rnB +rnB +rnB +uwT +fWG +fWG +fWG +fWG +uwT +uwT +uwT +uwT +fWG +fWG +tCN +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tXW +uwT +uwT +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eXG +iWN +rnq +rnq +sQs +sQs +xyG +weV +qXH +rji +rji +bXN +gCH +weV +bXN +weV +uMr +gIO +ecr +vPN +myW +rnq +rnq +svG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(169,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +qDe +upx +vGh +vGh +upx +dHH +opx +okk +was +okk +woG +woG +okk +rKi +ifs +mUl +wbR +wbR +wbR +wbR +wbR +wbR +wbR +cYn +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +ien +fjk +qSH +tNQ +qSH +oQC +lzU +qnb +vxh +vxh +vxh +lMP +taJ +oFP +vCx +hIm +qQA +oeK +kVr +oeK +xIv +iKW +blG +vxh +vxh +oAu +lzU +gRD +vGp +vGp +qSH +qSH +vGp +vGp +qoG +kmr +qoo +pfN +dwV +dwV +pej +huy +doo +fJc +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +tTD +gHN +dep +tSm +uKR +rnB +rnB +rnB +rnB +rnB +rnB +rnB +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +uwT +fWG +fWG +fWG +uwT +uwT +uwT +uwT +uwT +uwT +fWG +fWG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tXW +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eXG +eXG +eXG +eXG +iWN +jru +jxD +sQs +sQs +crM +wDa +ffL +baN +gCH +wDa +sIr +wDa +wDa +xMq +uHt +sAt +jru +svG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(170,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +saC +saC +saC +saC +saC +hgP +pHy +opx +okk +was +okk +woG +woG +okk +biE +ifs +mUl +wbR +wbR +wbR +wbR +wbR +tiQ +tiQ +tiQ +cpy +cpy +cpy +cYn +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cYn +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +qSH +ien +igg +rMR +qSH +oQC +qnb +vxh +vxh +vxh +oeK +oeK +vZN +trD +ceK +oeK +oeK +qQA +fha +oeK +oeK +xIv +oeK +oeK +oeK +vxh +vxh +vxh +oAu +gRD +qSH +qSH +vGp +vGp +vGp +vGp +wXI +gdO +rEG +pej +pej +trv +gdO +doo +fJc +rnB +rnB +rnB +rnB +rnB +rnB +tTD +tTD +tTD +rnB +rnB +tTD +tTD +mRO +uBm +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +uwT +uwT +uwT +uwT +uwT +wvd +uwT +fWG +fWG +fWG +fWG +fWG +uwT +uwT +uwT +uwT +uwT +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eXG +eXG +cex +cex +wQa +eXG +iWN +jxD +sQs +xyG +xyG +weV +weV +gCH +weV +weV +xyG +xyG +xyG +sAt +svG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +bMX +"} +(171,1,1) = {" +bMX +cpy +cpy +cpy +cpy +saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +saC +hgP +hgP +opx +okk +was +okk +okk +okk +gmF +biE +ifs +mUl +nhb +wbR +wbR +wbR +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +cYn +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +rME +ien +ien +rMR +oQC +qnb +vxh +vxh +qQA +qQA +qQA +qQA +qQA +vih +bSP +qQA +qQA +qQA +qQA +qVp +qQA +qQA +qQA +qQA +qQA +qQA +qQA +vxh +vxh +oAu +gRD +qSH +vGp +vGp +vGp +lyP +wXI +ieX +rEG +pej +pej +trv +rMa +doo +fJc +rnB +rnB +rnB +rnB +rnB +tTD +tTD +rbX +rnB +rnB +rnB +rnB +tTD +tTD +mRO +uBm +uKR +rnB +rnB +rnB +rnB +rnB +rnB +rnB +rnB +uwT +uwT +uwT +uwT +uwT +uwT +fWG +fWG +fWG +fWG +fWG +fWG +fWG +uwT +uwT +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +wQa +wQa +wQa +wQa +cex +cex +iWN +jru +jxD +iuB +xyG +xyG +sgx +sQs +xyG +iuB +sAt +jru +svG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +eXG +cpy +cpy +cpy +cpy +bMX +"} +(172,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +saC +saC +saC +tiQ +hgP +hgP +tiQ +ktc +ktc +ktc +ktc +ktc +ktc +ktc +tiQ +mVE +niu +wbR +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +cpy +cpy +ien +cpy +qSH +oZN +snO +vxh +qUL +qUL +qUL +qUL +qUL +qUL +nSF +qUL +qUL +wgm +wgm +xkK +tev +pXT +rlz +iRl +qUL +qUL +qUL +aDs +qUL +vxh +snO +ltf +qSH +vGp +vGp +kQJ +tPb +kmr +gdO +rEG +dwV +dwV +rEG +gdO +cpy +fJc +rnB +rnB +rnB +tTD +sKJ +sKJ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +rnB +rnB +rnB +rnB +yiZ +rnB +rnB +rnB +rnB +uwT +uwT +uwT +uwT +idL +uwT +fWG +tXW +tXW +idL +fWG +fWG +tXW +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +wQa +wQa +wQa +wQa +wQa +wQa +cex +iWN +jru +jxD +sQs +sQs +sQs +sAt +jru +svG +eXG +eXG +eXG +cpy +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(173,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +saC +saC +cpy +tiQ +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +tiQ +tiQ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cYn +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +cpy +cpy +ien +cpy +qSH +pet +vxh +xIv +qUL +qUL +qUL +qUL +qUL +qUL +jPI +xes +wWK +qUL +qUL +eoq +wZX +drl +rom +xkK +tev +pXT +rlz +bsT +qUL +qQA +vxh +jaq +vGp +vGp +lyP +cpy +cpy +cpy +alI +alI +oCn +oCn +alI +alI +cpy +cpy +rnB +rnB +gts +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +rnB +rnB +rnB +rnB +rnB +rnB +cpy +cpy +cpy +cpy +idL +kjp +kjp +kjp +kjp +idL +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cex +cex +cex +wQa +wQa +wQa +cex +iWN +jru +jru +jru +svG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(174,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +cYn +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +ien +ien +ien +qSH +pFH +vxh +xIv +qUL +qUL +nSF +qUL +qUL +iFD +ryI +ouS +yeN +uva +uva +kKw +bGi +eEO +gCZ +eoq +wZX +drl +rom +wZW +qUL +qQA +vxh +nTp +vGp +vGp +lyP +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +idL +idL +idL +idL +idL +idL +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(175,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +jtY +qSH +qSH +pFH +vxh +xIv +qUL +qUL +nSF +qUL +xkK +fws +kLp +svB +kLp +iZJ +iZJ +kLp +fBu +kLp +uTT +kKw +bGi +eEO +kKw +gWX +qUL +nsK +vxh +nTp +vGp +vGp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +eXG +eXG +eXG +eXG +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(176,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +qSH +jtY +qSH +qSH +pFH +vxh +xIv +qUL +qUL +abv +cnP +oWQ +hir +pEe +lGs +lGs +lGs +lGs +xyk +lGs +uMx +elg +jXH +svB +kLp +lNR +wgs +hkS +qQA +vxh +nTp +vGp +vGp +uwF +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(177,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +qSH +qSH +qSH +qSH +jtY +qSH +qSH +pFH +vxh +xIv +qUL +qUL +lEY +wOT +bEu +evf +mcW +gdN +lJP +jAc +jAc +fTQ +utb +mcW +odr +lGs +lGs +vbH +yhs +qUL +xfS +qQA +vxh +nTp +vGp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(178,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +qSH +pFH +vxh +xIv +qUL +qUL +mIv +tND +upB +hir +oQZ +lGs +lGs +lGs +lGs +lGs +lGs +wcr +nqM +sxQ +vpE +vHz +qDx +qnZ +ojh +qQA +vxh +nTp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(179,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +qSH +qSH +pFH +vxh +xIv +qUL +qUL +qUL +pTW +eoq +fws +vHz +vpE +hwQ +iZJ +iZJ +vHz +lzN +vHz +rOt +cOC +iaX +hun +cOC +jgo +qUL +qQA +vxh +nTp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(180,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +qSH +qSH +pFH +vxh +xIv +qUL +qUL +qUL +qUL +qUL +uca +nRg +bpl +tpU +uva +uva +cOC +iaX +hun +mAY +xkK +dIS +qKX +rlz +wdS +qUL +qQA +vxh +nTp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(181,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +qSH +pVn +vxh +xIv +qUL +qUL +qUL +qUL +nSF +qUL +lkI +nYO +fzj +qUL +qUL +xkK +dIS +qKX +rlz +eoq +hJS +hWO +jSw +qpO +qUL +qQA +vxh +keq +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(182,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +qSH +qSH +oZN +snO +nfJ +qUL +qUL +qUL +qUL +nSF +qUL +xfu +qUL +dBd +iRl +qUL +eoq +hJS +hWO +rom +iRl +pTW +qUL +qUL +qUL +qUL +vxh +snO +ltf +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(183,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +vGp +qSH +pYN +qqG +blG +vxh +qQA +qQA +qQA +qQA +qQA +qfJ +qfJ +qQA +qQA +qQA +qQA +hvj +jfE +qQA +qQA +qQA +qQA +qQA +qQA +vxh +vxh +mil +wYJ +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(184,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +vGp +qSH +pYN +qqG +vxh +vxh +vxh +iKW +iKW +oeK +xIv +oeK +oeK +oeK +qQA +iKW +iKW +kVr +xIv +oeK +oeK +oeK +vxh +vxh +vxh +mil +wYJ +qSH +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(185,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +oOe +vGp +qSH +qSH +pYN +qXY +qqG +vxh +vxh +vxh +vZN +uGT +oeK +oeK +mnM +jDD +wzT +xzP +mxH +xIv +oeK +vxh +vxh +vxh +mil +qXY +wYJ +qSH +qSH +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(186,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +oOe +vGp +lyP +qSH +qSH +qSH +pYN +qXY +qqG +vxh +vxh +xIv +xIv +xIv +xIv +qQA +xIv +xIv +xIv +kVh +vxh +vxh +mil +qXY +wYJ +qSH +qSH +qSH +vGp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(187,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +vGp +vGp +qSH +qSH +qSH +qSH +qSH +pYN +qqG +vxh +vxh +vxh +oeK +oeK +qQA +oeK +oeK +vxh +vxh +vxh +mil +wYJ +qSH +qSH +qSH +qSH +qSH +vGp +lyP +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(188,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +oOe +vGp +vGp +vGp +vGp +qSH +qSH +qSH +qSH +pYN +qXY +qqG +snO +vxh +vxh +qQA +vxh +vxh +snO +mil +qXY +wYJ +qSH +qSH +qSH +qSH +qSH +vGp +vGp +lyP +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(189,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +oOe +xqj +hMK +vGp +vGp +lyP +lyP +vGp +vGp +qSH +qSH +pYN +qXY +xpH +vxh +vxh +vxh +qzE +qXY +wYJ +qSH +qSH +qSH +qSH +qSH +vGp +vGp +vGp +lyP +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(190,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +oOe +lyP +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp +qSH +qSH +xzL +lUJ +lUJ +lUJ +bcl +qSH +qSH +qSH +qSH +qSH +qSH +lyP +lyP +vGp +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(191,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +lyP +lyP +vGp +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(192,1,1) = {" +bMX +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bMX +"} +(193,1,1) = {" +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +bMX +"} diff --git a/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json b/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json deleted file mode 100644 index 4e050d2aa92..00000000000 --- a/maps/map_files/LV522_Chances_Claim/lv522_chances_claim.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "map_name": "LV-522 Chance's Claim", - "short_name": "Chance's Claim", - "map_path": "map_files/LV522_Chances_Claim", - "map_file": "LV522_Chances_Claim.dmm", - "webmap_url": "LV552", - - "weather_holder": "/datum/weather_ss_map_holder/lv522_chances_claim", - "survivor_types": [ - "/datum/equipment_preset/survivor/forecon/standard" - ], - "synth_survivor_types": [ - "/datum/equipment_preset/synth/survivor/forecon" - ], - "CO_survivor_types": [ - "/datum/equipment_preset/survivor/forecon/major" - ], - "defcon_triggers": [ - 3300, - 2100, - 1450, - 580, - 0.0 - ], - "survivor_message": "You are USCM Force Reconnaissance (FORECON) marine from the USS Hanyut, stranded on this planet after your team was wiped out while investigating the distress signal. With your pilot dead along with the majority of your unit, you and your team have been running and gunning to survive... but with supplies low and food running out maybe your only means of survival is to move west to the crashed dropship to salvage anything useful.", - "announce_text": "Pan-Pan. This is the commanding officer of the USS Hanyut, USCMC FORECON. We are currently grounded on planet LV-522 in the immediate area of Chance's Claim. We are unable to contact the Hanyut and our dropships are unable to take off at this time. We are requesting assistance from any nearby vessels; this broadcast is set to repeat every 24 hours.", - "map_item_type": "/obj/item/map/lv522_map", - "monkey_types": [ - "neaera", - "stok" - ], - "environment_traits": { "Fog": true }, - "traits": [{ "Ground": true }], - "xvx_hives": { - "xeno_hive_alpha": 0, - "xeno_hive_bravo": 0, - "xeno_hive_charlie": 0, - "xeno_hive_delta": 0 - }, - "camouflage": "jungle", - "gamemodes": [ - "Distress Signal", - "Hunter Games", - "Hive Wars", - "Faction Clash", - "Infection" - ] -} From 129fbd4561cc4616c4fffc548c8c0ee3473d3366 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Tue, 19 Nov 2024 01:13:33 -0600 Subject: [PATCH 27/40] map fix --- maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 6b0f28bc5f2..701fdea10f6 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -42102,11 +42102,11 @@ /turf/open/floor/prison/blue/southeast, /area/lv522/indoors/a_block/hallway) "tNg" = ( +/obj/structure/closet/crate/ammo, /obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/ammo_magazine/hpr_box, /obj/item/weapon/gun/rifle/lmg{ current_mag = null }, From 7e9c0292471820307a66bcf5ccaa09e8113652ef Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Thu, 21 Nov 2024 00:51:55 -0600 Subject: [PATCH 28/40] ammoboxes are now listed properly. They also contain not stupid small amounts of ammunition. --- code/datums/supply_packs/ammo.dm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/code/datums/supply_packs/ammo.dm b/code/datums/supply_packs/ammo.dm index 2591e1dbe3e..e1ab44eba40 100644 --- a/code/datums/supply_packs/ammo.dm +++ b/code/datums/supply_packs/ammo.dm @@ -288,22 +288,26 @@ contains = list( /obj/item/ammo_magazine/hpr_box, /obj/item/ammo_magazine/hpr_box, + /obj/item/ammo_magazine/hpr_box, + /obj/item/ammo_magazine/hpr_box, ) - name = "M41AE2 HPR Magazines crate (HPR ammo box x2)" + name = "M41AE2 magazine crate" cost = 20 containertype = /obj/structure/closet/crate/ammo - containername = "\improper M41AE2 HPR magazines crate" + containername = "\improper M41AE2 magazine crate" group = "Ammo" /datum/supply_packs/ammo_hpr_holo contains = list( /obj/item/ammo_magazine/hpr_box/holo_target, /obj/item/ammo_magazine/hpr_box/holo_target, + /obj/item/ammo_magazine/hpr_box/holo_target, + /obj/item/ammo_magazine/hpr_box/holo_target, ) - name = "M41AE2 HPR Holo-Target Magazines crate (HPR HT ammo box x2)" + name = "M41AE2 magazine crate" cost = 20 containertype = /obj/structure/closet/crate/ammo - containername = "\improper M41AE2 HPR holo-target magazines crate" + containername = "\improper M41AE2 holo-target magazine crate" group = "Ammo" /datum/supply_packs/ammo_xm51 From 17fa4c3a92378eef2a519b825805c2375e4d7f04 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Mon, 2 Dec 2024 02:17:09 -0600 Subject: [PATCH 29/40] i hate merging sprites dawg --- .../items/weapons/guns/attachments/under.dmi | Bin 14540 -> 14593 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index d0eeacb286d12b69949f241b4166f3a840e1ab66..8d42d0ee014c8619740c971d21e4e261e2dc4512 100644 GIT binary patch literal 14593 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 Sn!r~Z0T~HJ@lr9P5B~?QykAKG literal 14540 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 S6#SPWprN9xT&wsj^8W#mg&3Rw From be642653a5aa7ef4d5a1eeae430e63f41f2a8439 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Mon, 2 Dec 2024 11:42:08 -0600 Subject: [PATCH 30/40] merge again --- code/modules/projectiles/guns/rifles.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 055b8afa104..bd1654c6369 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1331,8 +1331,8 @@ //hopefully, this will give it some reason to not just hold down trigger? Long lethal bursts. fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 fa_max_scatter = SCATTER_AMOUNT_TIER_1 - accuracy_mult = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 - accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_10 + accuracy_mult = BASE_ACCURACY_MULT + accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 scatter = SCATTER_AMOUNT_TIER_3 burst_scatter_mult = -SCATTER_AMOUNT_TIER_8 scatter_unwielded = SCATTER_AMOUNT_TIER_1 From a065b615a98bd4115829f4a0e447ad47fe0dbe7c Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Fri, 27 Dec 2024 17:56:03 -0600 Subject: [PATCH 31/40] fuck piss --- .../weapons/guns/guns_by_faction/uscm.dmi | Bin 35084 -> 34973 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi b/icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi index e94b6c463260d97bd9a5722b242b58c597c83c36..39af50718c7d87c4976d3964777560cfd52c1b0a 100644 GIT binary patch delta 33796 zcmZ_0byyYA+CDs+mPSH4L`4*&TUtU|x*O?Eh0PF3NQoezNJ~khNJ&WwN=QmbN_WR* z@89CQ=lu0u-*t%_W`;Fut$E_U@8=m}-(Y1VVpR%a!-)!V`qat_MiEUiF(d*Li7)@oY}{{LAh842xOYvtEkNEIG2nX_M z(Ab=5^dEGcDem;(VGwCnyLZ2D#>;KG*p6rXV9$N}l>bSI9_eh7{GZ?=WBD14WtdYF z3r=YYtMjHUk~9_*bB@v&kLJ`VKtLl-)L=NSKJ)10+a7xM_SfK>(<@kx!89L=HsLzVt(wqnzkmX4CWRU9sO_nUr0zRVn>~?=5&z1 z6gSe31Y2EQ-B%o`V`{poy{Msd8ujmym)F>9>E=`WyKn83AHO37(@QA(8LDj*f!(Pv z@vem=q}Z!a?OjB-{xZZ%x0WQN7lzp$n>=~KhX?^beCUcG8IUmLS%wu)`imbIxjQK? zcKUH?29ir0vs62#mA(B}M3G|5!b=x^R=m~&R#E^4>-cEzJQ$}e|{4@cs{#c z!5GdK?K6%aC`{-=uIw;Bc)-ePYNZawD1DsHA${5Bu;QJ^AChs(zT#S0&5J(!gtyp* zCqFe5+I%0!oZT)hGnoMT@MO8dT}txVr>>m4rcOxj-@kuH)z*qkQ@njuEQCB)Yx|b- zl{|8BZ}{SRNT=lED!c6BywA0`tOY6TEB;#eyn)9qUOUqkb0RG;MHbU^0+?<*C5MKg zng3X+5iIJtfFq3FnXR11Tq^R;j*^C?$iig0W0qH&>8J4a@87?WrO<78nCvzgXN{C4 ze=A!Xn}f4EcE{L4O${ytm3WWMP5&9z%8+n%AIja6LHp79V)cts{UP89h)ZVUx=XOg z&Q30Ze%iL*a87h(RPw4skj_U6YUcR8L<$+*TQ?F(N9UBwG##DYDb+5@$+=*n10_dQ zhI8Azp@1r6>(SY8&SuQWdB~4b)Z#DyIv+;XP5&In=#yI4`Ta^1jfs&Fr<{Cy-I$?s z$=KF;Kd)(mMd8K^W7k(*)CfdWT(pv%otU-`%lz+hL0r|G?xJDe-0I(75`36jgti}_ zV}FGlwlQNecPg23!pCTP0 zoHN;5t1|BHJXiO1h!8eGB;{N$8P>UnLNF>`4w1;&o?&GmznNM~qm9x)bt~q?-%x(*d=4 zW2PYa4=4p8D5(lgh*6a>GvkKlA}770VpLmy=m-vrccKnW#V@W=?UnjYe=AcEh58Jcn3ir(a_)$ea{!z!yN0^o35cv|lel0PI zfg!dbX6vr&px3i!?=_4vlH?D?Gx{QG8;oZQu+t<1h5ztM!&FIKaR}&J?!!25`wSNxdzhy=M&f#& zTfikq7`8_*VC5i@dyKem?>!W;WBjUDl1)H&-*7;$Yu4;M{1~D3_+2O&A(_=TbL?qh zTzKk`kV8@DQReldn9DKEgNH$ni?v4%Ulp$FEJ{f6fB&?X{{j~`XU|$9)p;dPWcBvw zjTj~7Oih{@NfI57j=Y7R&pPhg-YpTb#B}3Ndyy!YwFJRya$YNkKkAVCI6)RjJpWsY z^BdJpwX{K;N4^ajMJNKAJBL=9YFzPSW1fAw>jw`KP&4_`+1S}b@R1l(ykH>quR`1b zoPbyJ_#Gl>BO{|1?m-*tJfbE`zWLHp{9zmJ*_<2)d?$iTHg0LdSDP951}$yv1wOo48f!@c#W+%-<`LTZ`{${~vy4hUW>pE=j3>hh57=V1Gb1MZq|(IM zu2b9h=M@i!BurBwRm(KJca)kNL#8-1At=a9AC6;U*{sh2w@}KErTw3TPFhXkJPmKL56N<3Q-TV2hd#c}V5K=%{iTnG88n)hZ}|3_qkm z16x}qa!9Of}a8T5GM zAXhKx$MdA1Z}m;I6nT?-0n1#qV7Q85U%7mdn;?=_=nCJ|pAY0d_Zx^gnl5t}z!f|j zgSdVLkS8V2=I-L3tT5#l>=4TK!c6`I%yrp3onEQvqu1N@6i1xKi`1ot88KTsu8KN^ zj!SWkzj>hDEA2_5(C8%(s;>0h3cQXBAHiDh;^Fq*vL`4j;q4X=xK|O@=$q z?dq6deSMmD{C4!8-p+a)_}xHmeqHpfMQ86|RUbW8Iyn0(b!xri4;4M}%V+n91jw(h znNCAvp!|u9HACPP5Y(N1yL^PRd4B5_CMkaVwCBS9&;2NY9gL^%Gh)1OPj<@_Z)oHi zu`Q}N$)iiQ?xs-tZ&(tXv5KA{g=nWMC8qc-pNIoISVtDg7;@k0|GvNRgejz^-)fBS zCjfz&(PpzaPXRdWiiIsDOrf;j9eV1BI_9*-_Vd@bwJhK z#3SspDLZR=r>Z_1-i|OasLS`->?w9@sl*P|=rvy2c0>x6wIS^p9jhHU1&eH7jMIhmBarr5g{JysdNd z5%;%p)JBWe6`cI7{Tt9U5`7Ld%Ao zJZmh7lXDmW0lY>E-37o+#f}aDy7pwwVJJ;wRfc)WOnj{8qR+y113r<^KA!Q9qLXG8 zE789e8>Hs*g}swRrBGw#bu+hvYN!}u%GTcA+xJ~o*3NOmYh!5+dy+yPxYIe4X-HF5 zl|3iNYNGld(>nmIt|z^DqObpo$sJ8o(bPm%+o6aBE&s}hUJVqEs)qfz;KQ%{ z_>h*7Q9P1`Ite%7BWye)UFEy#wJr$B6mx}hUw&&rDd0g@%fW)m%F3qsowV@t>hn9x zkCJEMo!4lY=~WF@35j&IwAWE244J8a&Q;6+4Y9ViMnFzAD!YN-Up(4AIV#eW?w31q z%$6@Ms*^F9iS%ANELD|=#x)eyA;z`7t>(%R! zuv^f(TX$~Tw6PaYKL*oIO!^!#Na;rMypqZo;Z*Z#Dwq|UJA!5=o{YOaQB%CDqr)qr zwz~R*1Rgrsy;4WJK)#r3k$C%J>T7m&HKU3he=Qk@^QX$WMBS3-)*D);AdbCj6afpXcb>OZryg;#40aOt zm)xx&Ihd6{E2yb&K06lF@_HMrrpCo=@~(Z2sj4eFN=g|@0K|Q3YN|gnHmUJr3Uqe9|Fl010bQA_`{hBF zpR3Yi6%{Xs%eF(Em0zD5XLAY)@MK!{5)xvt=bBSOCbAf2D(9aWxw$8OrL}n5tDD%*Ef0d_gB1MKTed))*#FIsf@?D#gU((8j-PD-Za(gH)+M>*b4%fz64uyI<{?Iu=G_`~>WZS@C14n@PPeBA3_M~IE?o!H=z6M{#l&#cx43UZUksi=tVK9B>D zy!bgTUO*BL6(fAbBanthPRREbNpZV!${w#RjhstpfR~41h6@Ll_IE?<4*aLaU~$`! znKDfs-bZ$H>OIyrWiD1f*w@yIib^|Hx)a(bdon`FO{4{H;egQmVGlp#z}HvHSx`T+ z`jy?6t!L}w=4Bk8Z(N5Qgi%q0gS=n9I@QxKu}n5-<&D31hBG-eCGineDTGA(c8`0# zMDOR{xm1l{{+Z?pj8UbG83O{DD94f$(z%-_0^K_zcI*295e7A?vdLB4ia(nyJAOgw zrj3(RTRWaaPt6X4odcGRonNgsm*JrEqCg1?3oCM3Ezvkj|0#&+Rm*mcpPbqwR_sO$ z4|FuYIFhEtw+$sNx?SceCG>8$V1loc%%!~W46~CS`NSF%NBxk@GVWEc%8QpTN$TPy zjyj#L5g*M+T8qB@qr;K?ae?@OLplXHIZ#Mi>FDWM#ge{JlffSser#LEdSlTopC6nSZEM=%`C5*0BfSOlcM~lzHLeZ$1zpvbD3iV|b*RI^iZCXU5Wj`9mvDklo-l33Z#It%PYDMCAMXP zOc}=>9wlc7J06y6m*nKSqS;srnxA!7N({?d@7f;A@dvKssAZ6oL0UqNPxJ#3IX3L| zRQ6ye=~O)CW1F9`bO3*TF!Vo`;goRTX`*k&m&;C4)`Qf$~9dC`)|1 z#);@X;iQpvsNLs6tW|%kw{QPV)a}`68yRgUw~5%dT4i5JLIoVRZ@Qs=P5AEeQXvpU zrCc`x@|*Ae9ZPQ5tGWp`lwV$9t&Q6JX;H)mdK zIh=Rvom-0`lyU?3EKtI}au4tIe*nae=$As0fV=Cc*P5(>LKF5{`iX4aLUZ1<)HAH+ z3aRj&0f${*BO&MnuuN{eOdNz$M z9s(p6(=8Xd$HgE=Fg|24po1+m2Um9Rg_`4uZ#VrtG#JQKcQ{ul8MR(d=G20NWh?v7 z8pOXHjG1&iB=jF!ZB&6-IV{mK?>|S`p|XCOE9Z8<_v#rrH6LNv8@gg4GbA4eSOT|Q z@IP{=@R%uYe~_YsL>B|=6Y92_8I-eN6mWl15-vJolP*kNd$%dl!7M& z$Rq+%(^Pr1qn-!sCsGCZH$SnKWAz}<9dZ*vYp?ZP22oH5(@?CoClsp18&L3Ktzz{y zUyz14p3i4WPRFrE?D^+6b91oXDG&JP-TCfd+TEWH({^aa=*Hf;JtnD68xyJ;nS<_--&e8pD^vFia;v;~lAN-Tc+nN8U=~=Uf zj~8$~jRmQL#}Ld(qrHI*wWMZ9K~G&p$KrA|hk0NMD;wN{qlT>AOorGNiNiAunN3nl zzV6Eez0-xVx7n{k`#+A6bWKKkAW_0cL$$_uk9&^sl4|e#j`^rutqLm#c z8{i1}!Aiz)35e6YB7}7(JcxZ`I5F5KfE$SwaF@r=hl&WF)%TFQM#^sIZ&Nk!df)*4 zbithauR{V4$_p>PmHRd`KPqb&GplCK+j*>5**Q^TO^{K9vb?HTB+ zHs-97M?c`q{aw9i;x@6>UMDkfIKN$#M`0uWz$2q#y9W~(CS_Nod8uM19L`6@Wekm( zw=QohPfX8|r7C~8(t@L3VrO^xEq0~WJJ|VZkb2q^M$iSF?3+K1-b7!(I~+w~1L^m% z-5MMXSJT;#8!wHP26lB_nn{w|Xf>iP3GFq9ta&-TdvGr zULCk=x@Sdg04M+OAlXDU-dKicnIk7eIJpxPg2(Z}5wfvsR}7^+8Hh93$fyn`miyV~ zZ2J^x0Ag1k8bKi$3LLw3asB@)wBDYd8ra*DLszE`mqe$pGhBmCWk+AYNYm((eWICM zcXfMTKRnNu&G*w+OV4)BDi3zdakxVOc7)$t!NFOOLX)3X{5<4P?DI6XX^j|{ZoB$& zjBB%dpXr4v`7F@WWg&?JrDZZkR(}%TmsOW55a(eoR zv^2w|rBXH^H7cvAC<2L1A589mV4C`4etsgzsxE)_<6|pY7Jtny)WEeTo)o*^>IEo} z19(G6`BLc7KXgk&k%gAWZ=`?RQS9S$-&S)8xTJh|v4q9=(6qNq1RR)7JXabzx|*!2 z%Pkct6#M)}%RY+G`Y)ChplZ@IJ6OE{zyn-nSigRa@jqCC#{V|1;iDPXh%7EbZ{gcl z%kJpt$c0Nwb+02E$h4W@ACd4azzwY1H?rm$7o_KFYER}ZSPT}xWDFl&jv32Zf3!7! z7K|%a##d)HJN&onU3$7||M=+qZjOBJrVhYyj*f0!N-vK`hdhQ)J|1LcCO(F;iz;PC zEV|CL1`d=?ae4@^2_&W^#{$rI_x^n$o?a_ZBuIX1w4OCa zTY8L$DkD=4MA_;2o{o3Fy?VON?mLUIZbo_;3M{RT>bHf_>uf*MB`ER9Qm>{hT1Iv_ zE@UyQPt-wuF0b&@|8%9)^s#lf(tINR%7Vwd5)LHn9>_9JK@k-nuc)H(>X$40R^@gx zH+Lt~kEA`8;R4SCcTy5rcTKXt=+Voi;pbuvfzMs&$LGtXsXD|lYjp2!-4Z1T;iPqO z-XR~gyg^OVbET}Y+bu6Izd1hk+x*)U*mIGXk)aOBCt${c`P15ss zAVkjIRY{^*qXn=P^O)0nFaiQ(5eL|cR*4?esvfBV()Hf)vEu)MYXDd74!R2*E&wvy zTq@S;x~PFPV3BS?BP`F`bwq8*M&`eCg$%z}(O}`tcMjGPnxC83F4W-(H9keT3NC)|>@`_-< z{yzWGY$!VXCY$29NgzIy6bBa3^<6>r+NE;iv^|boSXXx0;+xUpbvgXn{<6I%P>A;m z!{8X~`8eB(EQW^rrn$Mf)?F$BQc^`=Nwuy%K7ze{eH4t0v8$^NP>5olEI1-aAE#hM z_%dwjfq+1g_dRw5E7;kasBe{r_Bv0r^+KPP5x#BEPNMiS3RpR~Mie&Exos#7sF~_Oo&4-*x4SuJ$}i|;#}WaTYL*=Z z61#xlLxKINMw{MwUlzJVfe0tW;oN%nN~@2P^@q~z|wp6p;6UlbEdXPNhTP!c{HGd#^S9k#eN z&+F$;v_Ic&X0d)imKIx`)grB!z>Ev=u3l6G*2~2ofAuScZ;~{UerR1d`&_D_cSGD` zyfkuf%n!lFCPGwDIG}5_@WNKdEVH=!z43FfZZBsUsDI7pbiSK~&vjC;ghJBQNc;T! zT*ib5yG{CrV&0R9Yic?Om<1C|;+LYEW{f?9T&0)912RTCDAM%-k^W;B1@t^HP+=`3 zzc|hA&wbD8f>#2izy;goX7w+J9Z<`3n!O?D_{r!YFR0*K6D?CK$h)@Chi75K#_z)E z(v|r6mBD&V#q(;)NOIWNfZg`IdmsCw`o7`CCFkMsp~n+gKq$FzVBBi-lb+VSx2Cp= z@C_=eD_4W?euk2L9B|)O&9U$}XM|Y27s_(i1HYdY7Bfr3Ff_*q{1y+?GNPKqlwTk7 z(f$gP|D&w-;dSiT*qs*g;r=&-To)iCUBlIBwLL7``~HgB)=!Q2dUtG_{XJ@63=SgnRgJAnto!@>QHpsKUrHT#U;A8a zK_LSz_c~Wx!^sq*V_>F)zEmEYflNvM7^=a|rD8+jz)!4LBS+{LC3%EudG~I~o`NEPRX9ZeEx2D;Cgp@W(^487 zaq&_F1k8UGzj zW;d0ZcE77%09oj{j2cK6Nq|DKvKSY;XT#3VSzc#mK2VmV2Fv(8Jp5Qm3IEFf3MC~a zr$O|;VwLkRpa-R z<8NprIaM)=t4JQ*Z5WAYR(0+9Ab2g>rfY5~Usah=0FMWGDRfWcvei}M`f39DW5b!_ zA@|!o5Qf%4oy3B;BjDf8o;xOP=hLUXoqew$13lN#(=xLQuFT6{?t7E7=vM|7NDdOr z(Qn0}b^E#viSW-|(o(_KbMrW4^2EXqRy615+QRkwXnR`8UM6kc=6O&Re&4?}we2zT zpz;3xu`aTB!@}t@XHJct?cU8WhTlb>+~=61upm7ow)g|H?@5pEFv8JV{aP&g0C+O7 z2Mzg-GB_t>L>kZF&FD!V##b_)uigU@Cui7~G|j&y@kpJ_^2q4XY`X%Od=HEJpRel2 z%8Gb7UHzyUTpuHUO|s^aPhVFdyYt`kn`iFMjUnfF)aTD<0@d89sd_SdzhLHhtLUyB zCIsiOTdY!6ZU_8>`G$8`knJqbun*@G>rW{BAI)oT1YXB(y1$b5UCzkQPq=>PZ(z=l zL*=uBr$ZZ0d688|57jLQ*BNwaS*T;0|1#GqVyJ>AyJupdkfy+sUH~4i`W^u1cS{I~ zZ2XTDB9I}yFpqhL&l04wd`w{Kbh#0YLIoN5`qp&9QN&$GKib0a?T}59MeZKkz7NLl zo3ezAoNdpS^Z0(`u0bEYD2%tUCnn*{4b}`rUVk(Hq;9{lY%{$wlS~4${Zb49WP-MU zSd=)q?KKwP?A8EJf+w=IzvaS`Gz46`P@=VIGdE85KeB)wGZG;Jeqf1l#}c50L0?Tk zt9U5rg|SKd&Un=YL#*>ZUb2C6Og=q>=u%V!m5ycTApvN%5uOZdvxI&k0vN4>COVkx z_(6LO3pht!6(-6dG5zyjIc5-GmpH}W)U}`DL zG^Ni4)Bkf-ZCCr++O2yJ+N^`+&A6o=-19mUS|LO>GRj<`es}kkoA6A|>;J;u)}iX) zvkl)zQ@_I`S%@z?q|m2}IFMo=Hm{-4$Z0CrqRaCm{qg&E@3PXz;elY#^YdrN62RXJ zF+2@R^7F^6%Mv4JT_-)Bw{L_RWSk+;Xs@;gGc!C{TPd)h!nn$jbL=YHKVJLu{Y-Df zX#H0Y;@n|{Uz`uH41|Pbw>Q`g$1OK09xdx6-4SyIYZO_TKlE8x;piTKj|Dz{{AdXp zMF>bpI+a+EIQiPqq-FYCoV6Qdr^15@F*Fn)ivmy;V>cp$hmRj#@YuolQQpu5SCZl= zE-r4kc-TwT&(SSeET|=~7&{xec8{+O*RAH~VOmOhJg9EuQ)k*Buc=dw85=mqD! zhmm?ZN};tlAe{mT0yGz2^X=QT)1S7sHf&}QsJ#CtQ|EumdRJ+L{Wd*qDwh!IMwIqjuu_>hK9(i2!?v)oft^={Z^b5ywbha%SB2gPe;tlzf;(YT>@} z^1Izj#lu<^;*M2ZplEb>bcBG+gZ31*X<;Hl!n(VF1U<*G(>IVW*1ZY*!&)V0>bITs z!T)vE$a~&lLo_RAdJwJCo8WYbSXuMOGm2U7p=5Lp6qf$|OZ@#?ds@VXa2s_71EhA% z*EepW%2|4OIwK6^DY*)^Ci4OH#s(gCerqlOZcajv+78p-^V}2>F{osLhlYm8Rbf_s z{$)x?wBeLYe?^C2uet%L6(A~ZY>cA=DQga}9*ZLUS1-=bS^Z3J0iVY061n|P8t);d zI{^;uFj-9W>fUm2bd$Bw5sN zTL&~rS?Z-h_SCuuzYREkXV2?A#-)Mjh^7qKiW7mL108`L@H=~p|N2ayE!)LkBW%wn z-I_>v8o2Z-J(x$#_yQxDl;WoMO8|H)tKwGcd@j zs2~Fb4Ozv#=CEHF|#)`G zX5=&>Ayx*dBk+ZZiI&eA$DXPW&&hOYNQq!?Okz=AFtriD}Qf&7hE1JIx&< z65Ddt`?l%l93`I;(;m{DnPAA^rF&J%hOeN1n{QS-XH^z8I1M9N|!8ZOQTy7K!#g)qwOr@`D z$eLt~=}BaNRIHo(Vwx}~LSTV?Z|m$1G)D~c*%>^>ojj7< z-8;aCPJ1rv?Ia@}fKToMCT{M4<#!fxD#%H!xr91C7T5Njp!_GoOvtO}N-b2l8-u@1 z$u<1dmz9^dXZwKXEjq09_6z#C_=wMt+E8`vi82_+)5L`sJS$oj8mD>PjheDmKEJ%O zd^&UU0;-XOR35mUK2I@WId`wzj|3(6z3OPI78s84l~36|*S@*XH5>azJHHs$<0VkU z;3)QAkvj51~mEwGUS$kQVI(Dv+HOJ(;Msi+SmJNY9Dw z8)hfOQ5AUN_9s^%CQ2@+QrRET%7B@O^|Vnx;*;XXg09*NHz!~Me+_jxU^<`#aMiI> z&eQg;-^W0f-C4X$+-439vT&RA%xlO(H-j&G{U;glNA6f2$j8^>tJuF;l=k{C%n+UH zR(E$W7caFxi-INENPxpe2hEn8^+~8if#=XCegD8mrAoM^s7Na%HC5^3NMVbkt$HEe zUs%s3DVqx-|j!Hi#+3BEzz3Y|JrMWTIEDe+D+?g}D-@jxfpI`N9Uv++X+Jy53 zJ|(nAIWB2>kJHCRs7{@pzZai&SgAxC-|Nf_`Xr>SGaQ{&!T32C4gKdb5=kL+ki&|H zstq>8dh_9RvS|sTBudJ?TKF4D{X3Cz{_Y`6srmYkfKDaQ>!H@7 zCwX0y${F@dn>CJ*=!Mur%&&Iyz{DjyRYZh zuiMX?m}h1bUqEU53Iesz?nP=5KbeXN-)-JGJwMGY-~QHmid`8vjrl7HH`*By z-ME%}`%hFluOc7b(b3VWgS(P}zliwc6dQwQ(r8bXwgFI^H~GuzXQE9{MoOwZ!tmS_Q z9n$9ZY^6xq1k0CLTj%KHm}lZ}SJI&?pVsAp(kA4?g?6BgmArfJ3nRZc6=>Jv_TOII zh)hnV($yV>copU-?SCqq-MGkh{Y?eJqXFYw9@G>!k(>G^p)x%a|h;`{+tYk`F zD5KpD^Gb%^qJmC*rsCl^yLHp9dd0Z+FFWtZ<5QbHWm8jlJ*S)^is1$vZ!`PqL?*WJ zu#C=JMX@XBI<*i*aIlw;KZEF^YO4G5?I(gl?*v;UXJ5qYJXcFk4%yeKdHn}ixRqwoT@ID6d|0}Ta9v? z8i7%dJv|d+Uze~heS#(I%Ctek%F~#8z8H$y;^&(^2CZ2<-XH6^gta%wo(8$f>hSi{ zf^u_e13G^UQ&*%sHugIfDyT8e*TH zQqqw-D$_ZdB)rgr6}R|jgirT2iziTfo`rE0P3I`9ypdhlpY||!l?-RAG{3?w+vfO8 z48@=a2Rq>*A~M(a1d+%5q7m(YQgp?&;e)1A#h9G;+IPM_Vw^IyGc zca-79w~Uxz(f8DQ2blgm*H46@tP8t(pG~4P=)AmT$ie$x1%bEyEhl{n8r0P?aX@`D zBI#p6!JCm0-ITvJrv8;u5MKK=Z5^Fx*z^Io32l&F7fJUzwQ97x3@<%{UT$#9eEv$- z?e&P5Ro+!ZS~H;tt^65d5y%+diFjUP&^s8Kf0jVD>^VQ$V7jO3gv4uqa{c=C*YDq} zyo!nWQzQISl$<3@gxM%8HumfhF~{!jgMl~d1Cp-_?r>`)>tpjGy{Mp@?CsDsNL~Gs zB{CtFIH^aJ8UFjt2oD08Aqz;1gk+Fb0%PVa9p9%oIBU~W3E%$9r zz@GK~nn_FhHd3jwg0EiZwltv*aa~o10sQF)k~9 z93U!^iaKP$AjAe(;k|>A@@7sTuRNF#$GD?TnI1PB(cC=}cQbNwx<|)wx4Tnge7t4k zT-#$9Nrv4`Dxs%%HOX5BmNWM;Sidgue^479E$MW0k84(zCrq+D4J7{zyF&G##CEMHZh z9Ufo4SisKuKGi4KQ`FG#K3(6yKt4wcfYH_kx!1f5rgBJFo0b-cDImxP zq0itIjnsdeXFHcl(F&K+M;k|V&w_}-TSsQWfXTAN0$aw;g!v?_xBhihwWs;cnlfH~ zY%TWsYuJLtp;A)y;6nCcQtiwV4)g*);d=S10O5MX9j^M6^FK{H1mjphJcghi z@fN$4RRL*Mjq~^$ASdf-#g`FO=Hwvo!V&4ht~aw_wAgmjiFv6>ZTyrU4EFFA7ZmXC$wWH_@sD9zautUdJCHZ|o^1utg>*=!Pg?Z=!*3%-%Cmky~= zm1<{jZ&8X5)@J2(3(vqTVx2S7Em}h!Oz7pwzsH9;)MKpr^0&+cL&Vi|zRS zlBmjlfZ46rV*ClxnOI@ge95c6br-u}_2M~mnBxX&RzmXHjrCE{!#$}WctHS48QMv; zV5W3Qg%kO*PMe9Aa zQHl?HM2bR+3k4U5Jm;KOa|0VkIk{Mpjdn6YsSua~D6ef6_V zNNG<+>X6o+{X*1`*z!c4rbL(-P}<@@dNCsR(%URURPwPb8)TiFo!L_Rs%*MRAKY9N zDGWv5o%jH@icvb45g1guw*2EK#kvGUMBys=3&e#Z=f^VauIE`hsE2G74@br#e;ruB zTErkq_WbkuRy(7M8G&XoT6e4|-Clk=W;{(?X>>=CX)sC2((Q>01uOpYl*c++^)a>`i+udWBXa zHQq=9Of81NZN?9oKrO_RV^);dc7?((P_vNc?B*{q&%Yn4u7BAXQ=3m;#o_ z#>R$FO?`0tO2&7p0r9qV|6iXcs*ZCZ=b8R{{{o7Jvz-lfxX#8LV`XIpJVr>jIywj7!MA(J}HW<|m}rgeSaPgTnXR_%XO|GV`R z#l5;Me1+kqrt9VLptUu+k3$pDt%^_)jZ4yHSTVJ>u5F9_o43iyX~N5K8MSX8%ojRP z5xy*1Tm=~Jc0cKi&yp-}GfmTwgRVLNYL&u1Zxknd=%f_{s6K*1!miTeKPu66)d1bv z8-5po(PdlQbuODr#!zZp2Em*Abtq}e-nH&Wah)vY!N2AYSd|fbS>I|Ro~?YEATHSX zA-ebwbcKE~E;AE(bKgz4_$X4MrluwgzaH;9HK<%l$@kdV6tg^Vt&lluE{gvefbBfZKYqRze%k~QAtUFoHro-&?HaU)(t0pS@ey4L6%F(2AyR*5 zBzF2fnU!J?CcGMz+9mcX8+UH|ON^NI28c`%9K2fH`?06WSJ6;i-MIX=<%XGT`265T z_S7VgY{ht9?M@+EG*~@eyI3G< zqk2|s{4mMB_iX20vBxK_V_8~I<*L&lzsM0;hDupMyIth@12%BX7 zA9f)ic)RiL9|x8Qj_>7gMC0CFd?@O`irPQ-=)BGbhj8JgNjK`>AuO*bp$n{ z>9)gsK_v|U@Xkf>x=?yi=~>^d&&1K>2b0?W75E1{IG9(i&~^Acv&%8!+ac=n3rukp zYrXa0cX8t9Lly?Tpg2Z64&HEwuTI(ydne?sO&ZukmSaCb(fgE^?>0YwtceK7S5_Kx zU6x0$@=Xh^)J6>3A`90rCtn-4*=50#IRDXWECT_V98>EsB`%JD@NCFpyOq2MDk3#oL(#8{}Hjur_aV>=COziCXr%>O2!T#W@yZ=rwi5}((oQJH*569SR;#zv4M}Fw6V&qNGshjtTWx%9L z{$0-h8)p=E<2>^A_O2Iqc505w{f?DTm$KRRb{y6p!;&KzsOuq!`Nt+3swG5v`T0d= zIgb!(G3&h`9GyNpF|v8+NyK;sK=;qaQgOOkDtAL%fHy9+XGm~8C>_0@@`f~=xl!d_ z-H!IB|6i~g^NLWR$+GiwbK#R-Nza5#y=A7{cEX-jThaJedG}TNFR|A=pG=?IuhW+k zArDemBnw}v2*D75d}J{1)2Yqh3&(aICm(H$ zd#|XdTz>oZ@Xfn-KYkh9dmDD-G3byysH$q3_?!vTCYIslLWYmL8>_z$fWX5M{?$lW(jiz-V09x z()#nmvm5t5Iq?dK{a8;Hr{Q~G8pskrr?xS`gG%{OHa=DtL}d#VuAHYF z@9-c`Bve2|_wW~mAu47K3i-XR`18X<()aOFx_TM1Ui&zay$vqB)?cP??CeO|CZ-@t z8SMPm1Lt40T7+iZE$afN3ka9qAm(!q7jDwo61IcWZ)+f;0v2Pf7<9|N(h;VBN(28{ zKxz~Mvmx47n^TPbAm)u%@kmD3X6Ign*X7F6!^ekslJ*2P-3nfgDS)Vdc<9fZWURyt zlLI8Rn9A9bXlmhf+AZz=SN;WDx-A+UiajUN_+LCoQ*R)Zm}oTta5fEhTDU@p!hK7i ztFPdQSNsymnrzp~vSj>3SyVh~h%!HqnHma`jro(rj=NF*r;cgI#n8(8{JS*a-fYXy z){DT4Vg67;G4UfjMs&e<_CwfzN8n^_F2#eP7t{A*546Iu%r;kuE{NqEkAQ?ylh=NJuM6r+^4j zf`ou{DJ9(v(lIncy?cKD=ee%u)9VKWu3^reeb!!U-S@iJI*dYT);2bnGMMO+ta(j> zKGc-Qbjnz)XhHh9LxEjV^5$xQDAxW^Y|y~nmoEv!2gZYeBIEbJUcYcKjzd-Wq}e3y ztIHQ@%FD_(=zNMr&^%u9(TJ4 zl7_5EL#4T7l}M1Q$n5Sj64|0YF2DV(V_T_8%ZK=J=kly4UN!7vbTKj5uK5AJiX8X} zeik3EXiwFMvCnh#fUZz=C ziT(G__tdysY8NcI!-VN3Oc@@(+GpUdQUX*3G$phw;!ZokjVwZoOg(!fUu0k#bnxH=tXuUJ}^+>p;uOp9cZ}h&5O(8x8AI|ed_do@~uXh>d}(j6U$5Q zM;x0K-vk&Q^;9zrz84jjzm=k|>`{g|_ne5J;_8~tR8~+fhH;+abHw_drV=~|*yC~E zAU5<3$+Ub&MBH|Lwe1mh+&P0%2)R+dwPj!aK#&5|`qwrZqMV*}$Dw7+EJulOu-w3I z54zwhU|wY1;dK`^HpHjw#WH%dySW)mZhVDD8cX?u1k!X@jwbDWgeDaImp*#iNdmta zBw*79?-X5`hG+9WlrO%1lYv|2aUqhI4rB|tMrF>v@_MpYuaetywurG5P@e-`Quv4qN!HnwQ0?o|c=fsguKN+2}^ z_zQC>oS*`*`V>1`wG>Nb>x zG!HW+fSi6E%*Gu*y^jdUC5DV<64k*31R8~$vCa3OIrW2^LrH%bGe3UGHLwV%DS$HaY-L7g-3|LC{EBT=DkNT0p!QO zZ#YQQ@?2x5muSWr0|6dIiQo_wDtG}dYLEgty!U=PKXKzZRnZFPjwo98$;$=%|JI}i zAf2K_$Tn@k(t3_>Xhh%NkQ9C562qTCcb+GZL8p7Iq}(wBI;({hrLc2;fV$b62cYht zCcovFJ8G4Lz7Q>=f(0SCEFVF;J}s!P=SQ(R+2gLSuM0pR(TAIo_$?lD8$_YJuu~CG z42@gCkaS5PvkU1hM8UxhNP%7u2~UQ~1Q?rj8U(eECerCvLD0!)qf)@l4}cYwqyj%r zM|UE~IzG*Dzn**i+FN|A^{8~{h*X-!wj_h!y{!oTuTg^pXvo7u6^RdVel^kXPX{L* z?Y<|Gg}1y?E4ngWq!xaU$sjCNd(E2h@ChDIt&t}Ir{u~G5`%cMx+|$Zj2d&%{Cxl0 zq0JyGZM-_${gSQvnXY7s|748be5_GP45BU&3>Dl$S=G?Txf~Ul^7o5IKk|yJWGwi)&okUh?qI4`hXsV`ZO<1tLz-XF2)tr9)al)Fj{|(TN$+Ll1 zSI|Xt4 zxI+4IwwrpiDd?=2LikO)hW?nAR@8Le*__m7y`9++}m7)5~tFgM!sjnB?0*^1JNYxFT?MV207_t^% ze9*WCS6cqocnuZ3SDd5RFnNaM-w#OSo+Yn;^f=XbZqM60aC3BU&YPRET%FcgJ*}u} z&ldRl9bmYWP&!{w+7Ra!`U<*@Or}Q7$kz`Tv0C{X#7mlr1fQ$1eY%>1X=YJ3$F8NU ztSBaAGG*c495#nW9v7LfOIhT%w;b%9`vpCUPF6=UhzFB5&D zt7>=JPH7B@h}tG5^I9c*O49X??&wyc*{T%w zY0x^U{3Wj=*ZYMS`qfirbYfQwDWx~H6rG*A&Dxz_qE^c;(~E0X8xG+0$Mf?E86cr~c{!RZe!_U?y}_PX!0@1Bf3ddCC7Ljl1x1mxdz2;I5F>Fh|7{Z z22_YMRCnb^WQ0dRC?BRn7$U>x=zmuw-FD@latdWc2TI3L!fmbGbw%v-{FDt)B$MJi zX15=9pedh*25IZfwd*dv%VJymn?2y>WQovZJKDlw*K6d{k~!bQ41i$od(zeQai26# z#KH7=qqZ!5S;K>Uj(57I#Jf$( z_u0@5ePQJfOX6sL43fWrwzvAW;c^pX?ju=LuY6vb`Y?OmU={CYUXtqB>1)BPdth0* zyV?q`&Zhsg3aIGb@-RB_FcEC^FshWeD@@0NXTBvc&E-Agai1!Y2LrK5KEp%py=v~4YAzKy56kw&ZFBL?NtCN z#qZzb*7l5Hr%#&aIXT1T?AZ;OEWqnFY~hsm36k_)cfNhUwkF4NpT7d1sSRHWj2`<-9k~3SuJHSuif?Jtn<|px8)lEU1Qu1iBEu zlqY*Do0F$(-%8)(8DAkkqpH=WmAISNt+`XfxY}@qd(%8e&1h^*6Cw5?o}EwP9!vu9 z83;UW#QeUvIq}rxYi$u|v%w(3=~0QGN~|;Y)L^)O|3MAc%ji0dc%*j7)2lap-*k$X z*<16?4NdRT(b+mr^@_a#DS_L>fzAW3G% zgZHJFwcAyuQG`SaT3S(};xzN;H)+>=p+83yZPoOuGe?@Xw_((Jf|=5P319Ut*er|r&+>ho@{YDeEThoxPv%UoLguQs-dUWrtQi-*G_LUkJikqS>b zy$nK5W{h-(NA%iPupHQbY=12gVHY|TKD(dwH2w?g{rfo4(UuXT_(3$3PBZ&wCr)_h zsC7;HGt%jrEMc*G`0*d(ALkIlP`V-K@hT}V#K?Uasav?9cVn3+*3mm{SM%*+kC#<8 z+vAYch7v{pWualAhf5=gI1PU_jxC*ui62_q3$crwcnDl!KdOnYc04^k7nxPpGHwtu zWuDTezt3Zg4SoIc;*IT}kL0x11H*IYD7%P-(UZo;T_XkXVV>Wo`@Y=`A6VPj27%71 z6YZ(2De-8i#CTir)v1=tXU_+&r+a2sb#s?Iptxx!M2D8vxoTlA$SW?XWImwtQs{DE z74=@D_)%4v9S>UhVrj0we+Eo;-_iha?19aJM%mfA!^P~FiJK2md3@96Sn1L_lMMEP zjJNGg?;@Ks!5)0WdRT*4S4CF%hCAA*^@Oj&NSXghh>M@r)QC3ZR{tK&tgmnkmUS6<(sK|49;Fl21CBAGS5i8!DJV_uKZExzE=unbJWLWYfO~GsK z;>N`~7OQ>f)%Nb2(YSuzn`W%okD`cNA*S1$oJ!e4>yBq@qeF@*+p%nL5RJj#+hw@F z|GojqX8U62x0zP%NxwI8atCiXbI5 zb#Ebz+4o_3+u@2kkTJK$CS3ind2j9LSZ=^+)X~7K>+V@)F_?RAZHtnLC}3~?QFV-8 zRzI)NE;pj(JPvD*MNCYLfbNEOD0qK(?_|0H%FAp2j1+bIGP9X7^hJS9~0y}imw!rU63zdml*X2Twprcq<1CjF$AZ)YwqW(PSHab2Odq(`=a!9hWM zBCnaAJ&*j3YOWLoXlLBX@sDJErB`g{Q8NEj`N}=x!p4A0-&q&zMPft5)z5qIK^m&u z10P@T)mZltZlIvmq|0jhy8PfA`n8VOm`ypT7|F)XmjPEjG?47myqAW331S)=HXWq_ z2j!g%k)=mUSYU@0^E6nwxFTho=L5Sb(BJ76Xm$PmjU4~Y#^_TsIJ)lcZ)f+d`=}w5 zb{@T}s`j%HIn0bW5X^A7R+c0Ufh+%k4)a-P*p+`T|7*xL?NBM)wZ&evLFi^)U;M1# zNsp1}3qNwPpBZ7c#$J4ixYxhyn=qGc6q7{LJn%r^M1rL%$}FMCFJP>qo-?Wptc%bU zas*oEcBh$ID$vzLV=9mgL9QJ?Dl4h(fBLhD(pYUCt$;mTNxG&w<|t0$cDL-6Y-}ik zf`Yc9q`O%q`Y@*5`Z0Tylfw>H`+Og04^3|s{of@u)}kWPu_zNJoLcb+2tLeI5BseA zYhXQ>am|zYi`N#9A}T;iIe&%D3A?vPIolMv9INH)45tHbD~^w$a(-u#%q#V8&tqg2 z!v*-@q^boRPiOTfAL2BK#)L8J_hQMKI^!L0t*eTC)w&OQ3o+wLFKiqf7=N&ZAJKNP zkmmAs9&b;fMTN+k@dhQq{p%NX@0klJyieccUF2rD)Xe%}En&P!5gy{Pnx2}9{P&Ne z?%m(4tSnZAk2`B#wSN=o-*{`ly(tf2e>F8S&=#}JQJ>skfx5BgrR6o7%p=~`ypJrJ zQ#&$>mX*xoy~A$tF!N;7>hV&l+w$$f)t(Q^#nzSj(!9K?E|MoVm>}aG32Ae7$vEjD zx9N^}lm_T~JZ)-{1*I&PWc^~$f1Pa9j8FIkH~44_6!kZc=0!{9Fzf?->EXGV*Oh{W zKqhffJHmy5_kJ~$n0_xOLqusmdAbFuXUN!@L(g<8x`;C!L$Lm&CnaVdMUtDJFP}3I zjv9m^gT7H4A-eA#H>Q+)YyEkK84(5QXe(p`(sbOkbjVF7gXxo~D?BSfAWT40NRdP- zL^8no#(PV`=B}hcOep+?OLXYoa>VMFaizIHG6WMa$9PQ|Fzs-++ppUO8~_WHV5?R* zfiBw}VWQQIS~YzWUX?VGW*uFkbmsc!dOLtosF9!!X64~QG<7g~MGUMr)m!@h( zUl414{yHB1;m^|DI%itV){oZKy9$6M*gZ`xpAc`eW`xS&QEn{gfj&!-N$UIGVWBVH zj*MdIZZG)%YB55j7GnVl#PiKe0fo{$KH?tm;H&2i3*>YHg6&2JZkYjo(>qO%63Dgp;t?C}P^CqaPwqc82AypvO@(e>bVMFn` zH^wCxkeZR*BRRvjiPZNao}C5Rnrt~Z3~UmI2@uCm*NhGR(o2&?RboU zm_~51mzc#o?x##n{v8{`t<>kX4LeJ${g{Rcv)WxXg76A+p=?**`HBG zEx%g8!ntvH9m;E5&{6B*rmhZ~Jpy?sok1t7vXjFb`5LM&IM>6O4c#LHUS8ln?|*=+GQVa$4eWDZT7=DT<^Fky(5uG*tX+(lrg zUXZczVuj}h%f%Dm5Zd2OfNorJ)h3jFChbCXOv2*3krUGc|9L~BTMad?3PL~7FK$oZ zRz*JGK6V&%+FT6O&-$vz7Xj?t`_)rAYVIdg=UvJT4M|=M2UZ>9M_6y&qkwhC|HjT4 zzyr#nVSNWF3s{kPP2>v6KL7=OsS^J9=@Tm-9~p$+&zL3fH4HcrX9iq|k1jfio*Xki zk8vaXUU@OqWlW-21}G$iY%$1!{j=n3$ABz3k9bYq=pm1`az(X_bnsfqf-x%M&D&Q> zlF})|A_xd~p6M)=48QW%=J(#YFD8a*$8h``j*(Y^Ys87DePHKB$_)dt7pbBuQKuNq zNe!3BQ{z8u;!gu6+g$jny;v=u(L8JTN^T(AHCHFs$49Cy1L9obM(R|ZnqM|U^tO?8 z(YNLczg>#+=#dR(oagOmBM!Y|1EHe#k_BI%#$KNi_p_Nh8NOYyLqNczd@h-dg2&hS zp&n~{_3ZtBYr(X0Ak!ccfA7n+QSISkzC1J9E~eao8MJV}Kq#knl+95SSZUw;cnD&m z*skIe!MjZQ{;4Wv{g%l_sYzo-Bj;>&Kg6M>r8gf@n_>z6ch0M# zf2iEM)?h2YyTIXcCOZW(a0^(TyrGb9VJQC2=|H3CiN}c^!%*wJqm-gwmwEXWq9oAP+tg7|Cu>Rag+nyTDGikU+ zB*1U6`L)0M6PARY=dEDp#&z`qhE9*OD^74qVmJFm{8~>@`q$vRXRIt($2S;I&RMhh9=;4x|B_blhI3HDOrW)usy!P&K#&4se(TH zCdOaoU%0=8jbaSNIXg9YW8#0d4)k|*k)7|HYwnaCjak0h|4x2iVoAnvTD0x)RK8NzKq!@d`K6)wz*kx9;M<20W@-m98=RBdT<_#2}LR-^{iJB z?A8H)`|W!~H}0gO^_04ilcM#WLpfqbidyM1dqWi7Z+@RcAdF$>xCF4${GXVNYXrR-L}`On>fuT-@&@vck5lR3GQ{Uh2(_lKD)D5OQ~eL^7dl9c$5; z*7ZeLgMY-V@@V{5%sbEYFH8|v4KgdfFB%JqiM1adnJ>el*MV%n%&oj=aIk}UbwjWZ zZ^a}%*e-L{O`jx_~! zd7MXid0%5xnzU~WI@7*GS`Ac}MwONxy*%9JTH3TjhykTSsn-4X$;t0PX{N<;Gf*Xe z=_PiCv{i!WdTnDFgM$&nWUc75lvRQeCCPYy*!SQ4-*cI1vSgQs3+_sJU422`(tzc0 zNf^rNDtlx*w^hpSSqVPIEju|H3%%?QfamHWltd)^o^yGO78}2d6yXXFji~En^B_ax zLlcbwyeyYC)K+)TpFfL?b||Hsj9E=o3}@UhzIXRKpM6W$94en!Z3G;;QhVepWnV>7 zN7;)`3`{Q0IFJO>AD#(L@;Jj!G6e}=-{O&{`oiE6&v5$p|5o`&rmQzk5Un`{#mb)P z)eg~}CD@)(qs%jVqM5?HH_(_ow(Td80(>wu<-L6}hDG*AcVf-7=G1p^m;x1}0y9(#Didm~dD;kE8&moysg?v>S*BpE>* z5EARp`uy0X^OZEOog0k53$w>tm4><1x3=5$V|kGKf0Mf=QP+zl?X?sTTACwdd^hK7`&m7$jr78UFOq(%v4{bETDfWTkW+ z%G2==EP4BOPgCwwO#ri&-Al8bzBMrT`1lYcIKH>&ysnS_Y|b7L5&gBKQugGp`4;bk zlW^oo$Q8(s%zs47Kz9iU34h&hQpBv@x47BJT_%R@DfUwc#oWiu5E_|AUB`$OtT3PR zDHMIR|9!9iMv(e2tOb1^uFKqV^x#A%VUY#SiCyoWQ&OP+v<f(~Pmi}udzh2*5YDY4W%mO}x+kSWT>BbXB z#9DF_8ut=JLwKB$E>7^zOLA=fDi&PX@r7tg;yeVNxxE~~uh~!1SuO|(3jsI=DA)RC zQaramPkjCBTX2UY8r*pKmwe|$eUM(*t*NI?1Gb%7SL?iI)Gw*4n?HmcD`Iq%`Pn&! zdMqQJ9^(YS0aAV=tRi#iC-0ubk8Y&-tP6m|Oo2lOQOXpz&^$hu&+f&}8u)u(Ba1xJS zc8)1+=K>$~5ft~N1qCUftPxwEJPmK^LjB^<->=H;-UL|O4g*-h(h~kM6*KR>LwND| zMgf@A({_=}-zB0|cX16;o7-&)EOs*j^J*9wb4L%Zzs=Q4e%=LBFo3R6%}hlRrzKxi z={Z7*LqrP;`uC-$gZ?M(-f+T$#HkD!FZ@nv37_Yie)PpU-T7a>h;xf1znB*#0p`YZ znHk}Qg#g&`Vj@KczDqUM%v9q)ul8pAd+uP=hCboVMYb)^`I@5I(IBu3?I*UCbYRGZ zpQlYbf@f~ORE4=^3>8!KvLZB7SlN5c-OY^xVljVq7tB|WqoKb6eJ!+mJ2DyK^Sc_f z^XXj38=7d3tqlW})!LOJ#xW@m&(-ug($hkLnJlVNF$Zo2onjEwFLlBo8Y2(H%0hI+ zK<#5hD7(d_q^?d*&8`0yJQAYyl>jRzXQ#^fnNj~f$gsk9laUh6Uz>_o8>D|C`7^|> zz~Omzzn3P0{Ll;GrM~o=1Y0Lo6UW zhI9Lq@03_wv#-0V`u9I*GRH`y3~pu-$M{x^o6Smr0Ri;Eb2sjadd7!aJP>VgAn3j) zyY=Qw(4s9~HDY4=)k#MBtD;8AP6v$nrfkfQS}86A!;8zm{qq_vd+Dw+{HVu|xVX7H z0Bw@wH4+i0oy@0g+$O_=hz=6&>L?X1@iHy5@TdTPB z^Q*o$N4e?hxAU3+Em%VXQ^{dt#VaxU&O_^`&yXn%IpjEjoJ@utUdOYt!#%g_+=CT! znlq&Q$Y|~oHKSWGX=v_N$zJ2H6RdxIBu?OszUw60uKCyWf&ut0m?PjL^2sEzzu)V6pb{X zis~#T(BA=ms*f)E^rbs?z?A7D6W*}3HE%F>2m|W*r*H4G^{Bq?TD~qk?N>rhVF`IJ zqYknLu*X>%?Mtu$=RlP6 zv`&mHXpQw8UP=xo+#b{hIB;#d@~kpozQ!e~NbB>g`JcYl2y zw?3KVKlSI|6&?4FwxG|AqGtC7C>kHX8a)ys0=S-8Ya#Q1KM(5WRY<7!Fq{dnb3R)* zZ$vgm&W)9~m%zaqZDJ5?^Koyvqtlz(#ZahnK1J>gz9cD-)pOe%#1)?6Of}X9uHAd2 z!nv-XNhlyF_&SUMG+5~ssH#P@ZY3(JrzY*2aaIwPv7HM+VC0p!b>9fd<_om^wC98vBr~^q(p&z zRhJRe3_n)Q3{^VJdlC&VOt>B*gV+&{NVeSj4b2@v{TR?xg9I~uLav#KnV9f&n)|e_ zUd)L~B4`pP5hZPMNjsGXNowmbUtZCBi&m#&i;o}tF1P`U5-ASmK|e{R+7`Nr-ZY2> zIOc%^c(P2&Gdd|0GZ1*0CE(@*ik&vsWcRm`qS_iUuOlDso3f_4;~#r}*NRd@iIGke5j7Hvj2-ch^7vK)R+-n|!7GhU zbby-hl(R0iPJF>Z;ki4@eFfy`cM3P?!1>eG_NXbut0MeNgo6c{9ojpV%@=g)gvSIr zV9EAi-=1~HgA6UP^tjF+^Q|vy{!@h`Mdo}|n+shz_FA5-r^qc(7Gq&4&D){VL{j#*)ats%EcMySlaVXxnn6VofL=crOTnD!c$l0je^ zz}M7t_K3BuUtpYaN;0-ApAdqP`$>ktBlnw8I0nqKsIR7a1)-cG(j8c2oM#x}_t-4Q z$7AD;rVwKcx2NaRVTwN(!2O9T|#um@Tyr%g# zP<6X0>;?5Wc(qfuu%LqN5|qX z(knK_dBWAY5>fHviQgESLQx?HLtBR?h$W*sb%?M|W_n`r~{g z2*BIG0P=L57dBKn+F^;l$m_TcR#m+V1&(~G@V{&&eXv5Wk~n!pi{I1yZN%1ou7OcO zK>>REQS;?XTHs{ZPfion3bgdzYlYNnjv+Nti8l0uXnZIt>suYcWKU1ioTo4d(HcXrS$PXICutS0tO zR42h;{dLfdlSerN^PhB$TVmmhw3=yCK0s0pmo$F!frRNw3hP+u5S{A&=H?IfV=t+) zvthFqs|wHTp9d*P=e*Xtk4p;h#l%Xv+{GD9TzAU#$S|{Dch;dvvHwCZjB3aEzCRz` zNawO=bp9t89gg|=-`_2ej4ATyF6#=oa(#R%H^+ZX0xeNV4%3Wjp{sj~31A5s zPwfP3Y@=) zjEDyNtoCi>i89|K5A~4pasd}V&`L6l&DF3&&Ssz^*JHZgUYWbw#_P4S3`lMOCbcOH z8O*NNkSEti@L5}%9%Y(P*7upvd+{y6z(c;?WA$9`0@m$Pu0b~ePv-G#&<#xc5YGa3efugGG=&51v*ec&=V3G zHoZ7~2Uunvn762qQ#3FvSmp=2kWdep**vuF?b)Ma5KD8{z(FcWSZcaN?k^Q6Yf>X* z%5N)IZEb}Pdrc5XG9aG<013T=%OZ6*1{ z7p7%viP7GF{`|?(z^7s;(zpwl=eY)i1hwiV8Ryg}%bhz4(^u0!-4^$OH_b`3BU6gq zNn^e$y6zb*z8Egh92gx9wHqt4Uf*(mCdlz3w(>d5t))G(@bSBbq=<(&PN@lrPbK?jx1aTGppy&&v#+$HY=N;nPeyRjFLx8oN zhnV2&^L)hOm0mGO&M85@=Yp?VL|S1QZg-ISQrm5`#_t`3SEqW|`$OndoJ^23j>#{)_} z1r6T5@;9PPNNH(qTs1aJspaV}#!7=_evOoB4uB3!#8F8AOj!f)x5?GR9 z*kWixSF09(N5>+2#-Fk8t&nkSg5y7biX1o5BZ*;_F*JJVU(DM+q&q!BfXaax&jd*r zM6*l}h+=$f6oK0SXXa)ijCJYqOOF-?%TB+U@Em!|GB5Gu~QI%j%^;h;u7}IPL*&RIH zSFc|qCqvS^BpyC}@gB0cjL-7P=ZHQHPym~=-7nc&@k1pb;Ogu3aW#5N2E{Xm!TkTz zKc{uAlTj}+l%Wbr+Ef_4uXrwba~vbYB8t&;qAu`=?5#|Th6mI(C8y^gC9i@@+>I`! zl2uC|O2#w!OTz8zZ}{FioxZ4Z(b{eE0W}hLdeWdhw=Rq*R>khSu~ikU|3OvLDAtF4 z8LoJ<!{`NBKGNQ@BswXiWI1_3_|=E#7i+lfAoczl3!swaKhaLFq;2P+(iV4T)CV_t)* z7m{l5*a>!~jmSQ`2PPo>+BzR&LAE`_-T*Q&1=d6%ORsn5j5YvPZX5GR7$skab*4l6 zBW_$qK7{x%ZrKGol?Y>mx1ABJdfrC8m3n%zqos9(@$>|9@Obc(Jrl%ZWD{(WN-2m! z4PL{ctIN0}i4xcK1#l*ExfKfZI!yJ^U2UvGMM&(_1dE91@mcta0sX495nekc8eTI;BocxuC|8VkOC&Vx% zZjSGtCRxAz*5X8q2-@Ssgjl21wa4%P!Y*vpRwy%~dt5puU#x=#sU)VgYQ`4JYHO$0 zWc)JrE;SXRa1zIcytze4r>d-ts#Z(jA97%*P41w-o0FpdNRNDu&8-tBK0KV}R|3so zXB$kM9;tsPkEF)ioY(}h6oMih=_bL)d3&z&>fQO-MLd?uuFGe2OpKOzv0ZE`N1 zXN;k+wsCl*riSP1=Ma2sl$3zk8p2h6FG2h{S5T0gnw6LcrBCK2#akKHJ{aS6hvGXG z2;$kBS=_{5a%6cO8mFn8{2dc8CT03{&Q)?r)&{l$!B}d1BKY9e|GP8C<0!#<<|!nc zWKYQd=ItkBT7{F@P8phbgKk{R6Y@Q zd|H{>d{C_N^JE-vB+hNGVU!aOe&o{0=(WetX*Rj620jP|1jwFr@qf(cT);#j2&^|n zqV(NQCs3FI_%JPvAp~$(Vlnd05brT_xSdD`{ANk?c0nsY{Dsd}??=;5f>pr7u>fxV zzha!7?rtE8qGN{aob<80U#aR5e3Y6fC5+p2+-h7mIcKVGP$k)0{iCX@1dJVf)VBQY zbSXn>@wmuUDJ9ZsJ(120%eRCpF7>>2DzkSCg}uOw4GKws!Dz;iy#11q6RZ&iQRY~N z4Wyt}Kv@q4%a=|1HbrHQj0W2bwWcd#xqeKmBLaUhQkj5pey2?#ykn3N!4-(V{VP~! zt;_)d2trAZvHt1lF)H+0`eP#Hz_HRA8IIi4JG{IsQohI}tuKb&;`#r^j23-)z7y7o zfk%GY@`KW_(BY#xEnJ6UU#WYZ5PlujNJSk}yYzB@Cg8HAF}gw8Ws{7h*zS6PRCo{C z8!{19dT!4cJkq^+oh$@}eR{!|D>x-WW~=|>o0lMr1x`xndH^atr-+yLiv`;K_v z_2rOsB4>;{iF-oyW{9-olDK!?Nz+GHSX3RBzKV4Ag2*1UI26+H6 z*!>%^eW-FPF~&Mm{^#VVx(tx^pgHQXb@%#_(WN6UFGO+w-e|fsFjq$jZ>QnObNx(~ zhF+p>3_SfAAHq7kcU%cy}uWvxcOcC97x-R`R^Aud*BE&2|(4TPykVPW+ zx*6@&v`EZcKzb+Y1 zl*m9lWoV*lrC(?ErICC@<{F1ZBd?aLLe^&e`R;=Uhe!PA_$?g>Vs3olYpHlu{~PcO zVK_@T|5HGRNVAy}JV@|_WFNOtwsojhY-)m16wfyx&dZS6_1)?SYZzrFUNe>jswlA} zq|tGcAt>-c5Qq|>Kx#F%JJ_!8GLaWqdH3|NUg>`lnreoo_N|$VKe=^#$oA4QfpwmX zl4Z?Y)uixpJ1L&2s4WxNZ|iy2+?msbsqgGCC!YCX9Nk=yYJViTC<_>W3YJsXB`GFm z-u6G?OSmG`I9vZIlU|H?H8o{n{Ay}e%J>=+*ppVk;V|hLN8}AuD>G_&{7L3vXCazg zL+Y%>bco1Yf7OJ+L0w&5zPns?IiRXDKO*BVaGPBcPHNC{Dsu?S;q5%A%c!iAx&U;s zqmuz(qZ4m|vBv`BAlvWueC!7GbXiXO?~ePX0xjNtu(BlI-ZrY*zM#@CGnIaI*lK_I zX+ZY%`nx-KDs}I#o&%XO#q(!S(=F7Csaq%)LCb_EbLSi9Rzyb^&&PTcjg%|Wkw#_n z(lF?76U9%Zf6&#}_b)P1Myb|Pc(mvjeIn23=g%!cy4QR72~vEw>;whQ{>HrnQe$9C z_Qh39ZI6`#mqfwH!+X;MAm*pV0O3Fr&<*{E9KYlplvzJ2tdZp4aLp=hysqOH$p%C; zc!TkJA3;EhfFbOfV0ff)3O4N7PWprXv@Kas-9i8Z`taccnWW3-?yD86Ki_=>|LWmB zZYOYX3%r=P8wfLc0`eWhDr8!D6z&V9>3=H@<9LI+ zh&xH_FDnbiOD$zV>e^bbu{j_xR~2=Y z%UfLIQdIRGR%s}|o2ormmUbQ+P~PI0-aZ%u$PAT%Y9Rudv{KzDDgYn%Rh5-Pe!r5F zmnVi;Zod+Mnk+YEQE4x+z65~;1PTNZQ@_r){e37Gf)1m`G~N?y?s{&W`LgQAkD6%? zq1(eYFIBx_PbY0FKG)Ty9zM-Hd~K>;-9G3jf`s)gYnIDp3|6iEZ~S6PEY3j!5-IWm zcqu5nLq=Sj3Chy>2GpDCo(tteE+36*q6*A_Syj?+4VJjz5hvq;?5?SRn3$YFFdD)! z>n0UOB9SiW5&U~?riqsu8=Gxot}-{*-!<+wJ*wsm0|(<$AyfHF`BReub)n=JaGVNC zQK@q&e&YRCJoV---1)qC1r>Ei+rl^*ptXWnzQ`M{%!U>AM?HjSqC3nsCFo%4OC_aF zd2wV~dU~&kIE({W?{NtSg8On>cNt(RK<4xN?WBK>F)rDFq;N%+D)yW6%U4 zn6{yq6UV^@X77@6pTkVd{0MPy=P>r>ea@bi?d&+##Y=-NJKX;!h7aykK%o=jY$UDh zy|rLY(*J6;lgeq6_KYf*J}*8NyQ|;-o5kQBl7kTVAfa4Lg;B{E}qxT!5YwvIQE>fKWi=3K|X+0hb zR@X6!b;1lr%R~WHf&uB27#8T&d2-JU4FxZC#`^szNjZEvmwAN2D))N*W~a3jT1%J4 zU^XTr9FSr(d!;jIbrvxC?0p^1XON_A=tp*6{;V~AL{dwehPAbf8#s@=H0keTh93kJ zaOsv%n)q#YDxq?BV^L8+|8nCwoOl{EFlgn5;o1SSFunW`s+53tr^>--y6nh?qzU5~ zE9s^vQ}a@1cG1%P7|II;$=_ooMqDJnNtmU#knx%SEp6sap2D~Tt==;CEpC|pND4nM z@b;4&W?k=tTu#K`i50@j%mej+SX1519xuIq&ZLvi z`w-O-(|{HJVlSHPM< z02P+k20`h671RG=$^REV76$tFe7N)6AA$Fu3>fqO6$LLt@lX6IK+%*Ep57-h1(W`z z5jSH&5D#Jr?dJ9n`THhn8w~NNzly_iS{wQV>awR12LE)(fQEjt`YIFjr|aK$RLuy1 zwG43vDX$(v&<%0)5PeANBmMW)M);(7j1yF6g}`I0R=uR`ZXx?JX_t;;fH>@QUye~u zo}$bx6w5r#gQlD6SdlzZRV__YCt)71=MB><|D#t1c}={}Vej zyD+%Mq`B+awSn5`=>(V3R>IYBC+Wm5UiiK+CR9|#1XMgpFE}7)TM%QaN%r4yX3S&E zdz~LInh4u>6!{!DpKZM?`$%MPJ!;_O(@uuYj__LO$3Y9(8K6|ap91Afmze8KR@Qh7 zNZ0@u_{Xllx5u~N()!CjxrAgrif;s(Zi&UX*{a@3j96#3lx6&`_ZG1XBmA-9^Gy?^ zEtq2$NUy^MvEIRgXjLU+mVaoud^q0O^~WXu&R;g1+pV!O+F$aC5!pEY#qgAG3fw*1C_4 zgR@w2zSBP1@a@$5m=Oy6l-N+^cjK$<~E!uhJ@D2=scaqeJ3g8-`!2dtbNe);DCnqPR_D^(m z!REV-r<=DR6tUA$-g5}sqC3i|8}%9r+zXZyax4&Rr6G^um60Ka!acl+p+sI2>Pp4J zQlfNh=rcP_p){aXO7Y^pAOf$tWMGgYu>sdo3K&kMP6*n)=(L2I-lRsp;E12`O`vwQ zKl1%G^k`Tg#buLwfb9d1vlo>*Ku{DZN$X~c1iC2TI&jZF?)%Nn2g1Xnql>{&pT=E| z+1Si2)I{W?!?ReRGQVHvyzmW{D9NN*&=Y!^y>{aM0}I0B#FnKMhw*LJy*^h}QA1=* z*>vU7MnKjNRtG_O8c*i($7s1fskv}hc3?H-3M@Xyllm+#1qsO<~OxA)}LwOx$2uAPk@f*`|hGkBZk3F6`F zKG|o0zf4>HB;WU!^s(Vvg5KUsmk*D}R(M9_eU=~j&zv#P1`0lIeHzlM zJ$1K!b>Llhuu{x#9+OI2sz&Ptxd#J1^1uWbBwdM^sWVz8sZJuNE;h>4KGcFyaE7(X zIk6EDA0Gaj{cEKnt3M&Ah4up`e3rX6Zd>{1-Ll{|uBQPHC`pn=h;M9el2cOJyahvS ze9&#&y9F95DF9lu=tiCSVQ3o`JeoKo7?@|0@O*(>2IcvKo1lOAD;QX+jVOHwIya)& zEG981)5UMd&aRcalR~9=1~`M@L)47WR@`HO-)I2e47?`jJOX>zw#O2063j+@jl1S| W`KC8*kqH9-o+_w3E|D`0`u_l%>){3f delta 33859 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

q}UOZks!7-y5b2AVg&8>D46zdiodwIer z{}=>Q7D_!cW1ou9>4-P~w$hVlVJ?P&M3q5p4*j{sw@{9^w~Q=r310X9;-4=GInpox zH)-LXFvbBIDxJ=wZl>goPG=m_ag)K27IxFlNNz93GfKE^`i}%$S5ELYO&JD+$qt=K zD&7NmQ+e(0#J=vjxP?V<+veAoB9K1|?$SwcdYqVFeci!XrCnd#TBpE40mgh0}3!OYCZQCIc@x=@IKY7$A3YpK1z$K*u z8JaL#Q#j}puSqdk;|}~OVd2+kWx)+%CJ&RF98$+KFt+!Q*@3UmA|4I!dXL>V%^9GL zpN_7*h#8)**;ReZo#cNQK0af6+IW4+4`a(L99oE6Zmo8om2N!Dv57CBbQ&T1S#;aA zwzI*`?HIn&DLA_x@Zz+XIm)eB&g9J#((x9<0o8>bx$1b4a%|I+@Y{z^3P%q$bsNuE zOipA!R7N%%(F`Ieximv?w)Vhj6XZMQK0j1hc+>;`LqDhe#=F^&7^I2(sMYJMTBWpV zh4{0Y<{`;@S89r)`_Dta!oP{3Zwro$`>*W?eDCZ1aJKEtQk#hLnzwy+%o5|p%wkhA zva%1^=YGS8vVk49&k#!2*U9N|jkygo=j$q0y?IP%P+jhPPp#T_gbx{&JcMTCOIm$A+BZu;!DPg9msY&8WkFFbH1i zn8^WZB=jIwb$Z4Y3EGR9M545bs%ojdi1J{-+lRv@vx>E5qb`vOib<;@RW-$A7Mwgr z&p&)07JYYJH7_NSMdr(UjMtKZ3mgN0!p|KBwab)0ZqSSu*Z%H~*xJGd@Rg0@UA~=D z9PJ=~nee~Kc}O;^CX<#cp<8}1N-zH%PN##mAUjpiAV1>Q{r>n2i98xMdO@2#7De=);sEv}?4r2MjFiw8612ABO+R^YUHATe zeL99{z4XMq$){MRN`vF@{QYJ4_>5}J=I?G6@acVzRVfqHhNs9VDEzVi1jcq<=w+~6 z;yDnraPa6jqeJ$gd*p^{$<7!B<$<^e_O_KmW#J7R=aSXlTzK{>B&_erV9LQWP0M;8?xKK)DJzj1!wzg&m zrWtm32E-c=cJG=gcvVxK5q5k1H2tsP%lUw8JMWM}rCp{npDzDLNtTvt1Fp2M+1omr z>6;8+G57qO(L1-E`p#$H?d}>JhN=j!v)>B?wr+`N50^80MfUKe(Yexd3bqh?&(`_jRl{5^=(Q9C_PbL_kX%f#JE4XTCs&a?60i4|D zs{i5z?(ICa_Px^`@+ymXu^~NirN)uul)tdPAArL%sP_$H?6@$@>boqgZF7Z7yujMM zB}_&~7gXO^bxpSEEGqfGSYmXH#QYK@TxEOl-ROwAUVd1-NxzPa=?3lG5CL>bZbwDX zH)rCRpEAKV2rh56rGi?YwblA>6JRVp23~@nZkcD+6u;E#%-Y*Cw_Ch+-cZ3}kzM#h zZQa%lPl5e~Cmqt1n3K1p=v^Ms(>BV?HLug4cPVvQk#9M}IB;l3v`KyCa(Ns&9SptG zzmW2_BPW5RkXq}Op+%;pA3W*}ND7M#fBgKr=`0ShTPzaa@H#jF`QqRM_!`{@cJ7;U zjq&(+d;@U2rlz+uH4BXe=^QF^0P=&$Aft+7vHAobpKp7X8)yp)eJ<%^hGi!03XS*P zhK}LC?X+tBPw7_Fei&?03_!GiWk}=A z@%9MMt*n-K0ls!`S`B5>@7!8N%gho z@&rftg+C)RJ27gg zNuQ9C6PtT!iC07M@l=qsqT-#kyPea=wT{0H^judRCGe#hHptkvt*;JR9^lxESnxKA zo-=v5pA-C0ZNO>dxuT)f_?C64)A;AH!1_AOba4yc^_m{$lCaw%$K>}>h_qYmq;AJ$ zAkDJppi;`yf1Cd4mWcU(uJ=}%%{Rktwx2g7tf@UgQ@HZF63!TJgurt8yeD;~<`v$K zel>XN?f5=N4N3l5O2Dbeoy%E%S@(tgOhF@v)SaB1C>^JLu7eBrd+em>V#yld_=Z<| zn$uBohEagGvvBh~1DxaRTqW=;z%8=;S3r@tle7jU#rD;m&y^iNUM^_d@zixUI-5SW zo7S{DmE`4}D;PN19KMvfUe@@dgs}cjb^hO%Xid~e=H>|(v*n-p`&o+Bd0<>TEy*3Nr?S(qHytTA&)h@qIwT-3F-crNfDd{KW=T z=3d8)Kj3X;o&pKqSP{s}g0`iqJE*IRcemgP%K2g2rMR`;CuxAyS5Q@z+aD?5xzI{2 z1mzvlP8g(&?7uubq>;0ms@_%Jb^;lvor@VmF0}~QOHq55!28<{fp@`)JK~RnSQ^a1 z5qn=q?}=INGv(UPpS{99eNsz1$*lezMLVzMa}k>qRi-Wa^3A&^mR+xa22q4oDh}?( ztk5AE?i*N(YCvz=^Ev%A?BK4>Od28OMDe>*RqV&3o0P%jnOo;}0%{9~WV#-JMRW-4 zsh5Clv#vNEzO!%drB)kCf{QCHBZL0xdon0h0H9QaSc+NN?f+!fJQhcu7tbCd{l^g9d*TA{8QJW%=z}6w>26^4;V8l90(ULnHVaatO41z-O_@uU|ylGfW<#aM{~$oRLqcrcqX!D+eoh5 zg5(-Oqd%T1JR&?7ow50G-iFGlAK;i&Ht!*JZ(8jUn=ezPNgOU`&M0@JY$M z8N$-by9k^D0wx8@I*1N^4uO-{tN@Gx{O^`C!)ju&2@nB6_B+_MzpQV8C+fc}4B1;f zeTvx$HivF0Sea)50q&SMIBf1#rGI>gB8ir)e=~<3wMp4;lupMz1v>+kHE>U3GN)wZ z{ugEVo&vk~4WTqxcmID0?V(MRy!%2ARJt;(1?eEtVb)^DJ+@Jc4mv18ZaM#$F;XfV z1^$91&AlJ2*%CeRVBmANqm%r4NGZeaoi2gcVeLV+?g*$EIvXWn>HtJwnNqF#d-$@} zw5zAbA1u_t`#GUqXoRh;TyR65eE*j~&>0aDcQ^34^#dGFwVOjig!icaQqlG{cv2Z# zx`sY?h2C>d_1-r(Gc&$MUAdCy0r;r_GijJ{=>tuezLeG`wc)1Huq4!W9(6;U$jh5P zOt$Zvx(NsBKu#3$eJYRd0N6qenY`)Ew^p}6sM`Tj944@?QGSIOv2QV^Yj-PGLtiHr zPF7~w%bz1IlmU4@&S18x3Q$Rr4HQ&lAk)h4GBhUn*8NR8F-wj~*6okRWzI|a%H12X z;})v^D*ZpnaGlV9Fw+y&m9C4RK%N46DgtjR+&GNh2_@a%4>cX3hvIch(_Tj-(g9e? zavevo^k<>RONC7=m{?fGol)RqLU5b_7wF9~0D4E>9H-1wRCv#O=+wenI^@Nhnl^r& z8(u3fM|SEsS}COT&-A=1l6!tYhr@AP8Uz|IbnP5|OKFXBbv+UK=;WJr36Y9>Y#`3} zTS?k^U5>X#m#pos&J;3^u3l!uW@MBY!JD@X`3#Wnd8GT#NIJ9s3?FPbX0}yk2h&$b z_Mr(k`9K2b>}>9bcRsrvFKI7kw8wc}A&-}0wt<$IN$UJLxYC<>Ms1yd*#y65bB=?D z<1gpqUf?VE3nCo?h15QPr4Em|QETQ64DkVXk(m2sPP+fElGAY&`3m&bo)W%_kpvHU z&)5YB?e-8G)8hctF+f0MO<7e~mKG9&5tHe(FDi;t5(nNVc~BAb-S-Xy*JXLuZdZ$5rkC%0h(D82zI;S3qJ8^8+CC6p~W!wx~%SOqt| z^Wz#lAHY2}dl1mVFAuXHfHWuzuF0<%O*ah2{)u#9hZY1$=zfr-KAtjZKuNWYEmj$5 z`0R6WeQuGHlegIa`S+RU>T7TqV<6cD>SEl`(;M7HP2dNHJIJNElI?+|X1iDY|2UOF z^!n-8e+AL_FAYutXMe)QC$3e|?|%H}-Ys!mq7X=xnQ;tZk)#Xu+)YZSV+<9o&(>66qt+eQWU-* z-4nJGCyok6~RV}ZadK717F zDrSt$OsXygfpv+-LgN{=oH|v0*USVNO#4Efo64B^oSCWB@cNLt?$f_pFtiXfiZ89u z4N0%Xsj=LZP)W_X>JVxS?W)$+rt3AiIG-#J2?>$5wl36Y+qJ%#VM7*8w6ZS4B25fP zQBe{LYHPa#k*410!N3rJI&a5S-Di^%5&wJnmN;+U#e*Ioz+_90lhWPDjm%AE#?U)w;&z3l2>FNzgJ=HTIg zEEDkTd)wQxW-4j3Ps&a+u2u!0r$JRD+P^%o|l6(7t6q=}?yI608NadK6?Lf)rrNYrgEyx7;X`p{4 zOba@SsC{W@NCM$T!>=N>Gm3#YAB+z2Rp-dDOFH1XFI;S719VvYQvGrmHzEQlXW5YI zH~og9>Hx%e`DJQOB<94Q7?;+0fHN>ZczW(cW%s|8OL|B#8c*GhiWVHX>G3lBP32=O ziL|%3#1Bob2rmensq+%_RW@DC2y;OWeYyJ7qQTP$(+8~k;p2Kmy+$w5;EMMXfvK4R*xp3l{EcK+3QBw}4P5nb*Yo}0xs3J|9M zJ{B6#4utjgR@9{)xV1CSedx?4PYjMui_vemF*lo^?rImm3F-MF${^{AzDJ$bjC?&$ zR&_r4GV_khLc|Ay4tdDQVGf)(HcT+oI$iKLU_3DjA@L_m-RNhfUIx Date: Sun, 5 Jan 2025 01:27:33 -0600 Subject: [PATCH 32/40] map fixes --- .../LV522_Chances_Claim_FORECON.dmm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maps/map_files/LV522_Chances_Claim_FORECON/LV522_Chances_Claim_FORECON.dmm b/maps/map_files/LV522_Chances_Claim_FORECON/LV522_Chances_Claim_FORECON.dmm index c7d83965055..a5cc020e0da 100644 --- a/maps/map_files/LV522_Chances_Claim_FORECON/LV522_Chances_Claim_FORECON.dmm +++ b/maps/map_files/LV522_Chances_Claim_FORECON/LV522_Chances_Claim_FORECON.dmm @@ -42083,7 +42083,8 @@ dir = 4 }, /obj/structure/closet/crate/ammo, -/obj/item/ammo_magazine/rifle/lmg/holo_target, +/obj/item/ammo_magazine/hpr_box, +/obj/item/ammo_magazine/hpr_box, /obj/item/weapon/gun/rifle/lmg{ current_mag = null }, From 715fa8d75885f5e8760132809797a21d668db282 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sun, 5 Jan 2025 01:41:57 -0600 Subject: [PATCH 33/40] hotfix for US Army presets --- code/game/objects/items/storage/backpack.dm | 4 ++++ code/modules/gear_presets/usa.dm | 2 +- code/modules/projectiles/guns/rifles.dm | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index b839d91ae23..92fd2c4a8ee 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -673,6 +673,10 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r item_state = "upp_g8pouch" has_gamemode_skin = FALSE +/obj/item/storage/backpack/general_belt/army/fill_preset_inventory() + for(var/i = 1 to storage_slots) + new /obj/item/ammo_magazine/hpr_box/ap (src) + // Scout Cloak /obj/item/storage/backpack/marine/satchel/scout_cloak name = "\improper M68 Thermal Cloak" diff --git a/code/modules/gear_presets/usa.dm b/code/modules/gear_presets/usa.dm index 21cea64edab..06925888ea1 100644 --- a/code/modules/gear_presets/usa.dm +++ b/code/modules/gear_presets/usa.dm @@ -177,7 +177,7 @@ new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/lmg/army, WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/m41e2ap, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/general_belt/army, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full/alternate, WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/flare/full, WEAR_R_STORE) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 31b7e1c7286..ec56ec0dadf 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1311,7 +1311,7 @@ /obj/item/weapon/gun/rifle/lmg/army current_mag = /obj/item/ammo_magazine/hpr_box/ap - starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel, /obj/item/attachable/bipod) + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel) /obj/item/weapon/gun/rifle/lmg/army/set_gun_config_values() ..() damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2//equal to m41a dmg From 54cf70831d9c72370fbebe527a5c593b661b0b32 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Thu, 16 Jan 2025 02:30:43 -0600 Subject: [PATCH 34/40] hotfix for broken spritepath --- .../items/weapons/guns/attachments/under.dmi | Bin 15299 -> 15865 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/obj/items/weapons/guns/attachments/under.dmi b/icons/obj/items/weapons/guns/attachments/under.dmi index 2df37c2c8ad98d0147d83efafdd85cdb53acd4e6..c141daddb5330805ddce991e758e47d8b5581838 100644 GIT binary patch literal 15865 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 From da7d2bbb9f796dbeca4861cea26f9f59caea18c8 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Thu, 16 Jan 2025 02:47:04 -0600 Subject: [PATCH 35/40] balancing pass --- code/modules/projectiles/gun_attachables.dm | 1 - code/modules/projectiles/guns/rifles.dm | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index f8fb7d55c79..9ad30f2ff1a 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -3688,7 +3688,6 @@ Defined in conflicts.dm of the #defines folder. wield_delay_mod = WIELD_DELAY_FAST accuracy_mod = -HIT_ACCURACY_MULT_TIER_5 scatter_mod = -SCATTER_AMOUNT_TIER_9 - recoil_mod = RECOIL_AMOUNT_TIER_5 fa_scatter_peak_mod = 15 //fifteen more shots until you hit max scatter //item actions for handling deployment to full auto. /datum/action/item_action/bipod/toggle_full_auto_switch/New(Target, obj/item/holder) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index ec56ec0dadf..c626326a157 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1293,8 +1293,8 @@ fa_max_scatter = SCATTER_AMOUNT_TIER_1 accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 - scatter = SCATTER_AMOUNT_TIER_3 - burst_scatter_mult = -SCATTER_AMOUNT_TIER_8 + scatter = SCATTER_AMOUNT_TIER_5 + burst_scatter_mult = -SCATTER_AMOUNT_TIER_10 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 recoil_unwielded = RECOIL_AMOUNT_TIER_4 From 80172632fa4536c04730a8ae581c4e724dfac89e Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Thu, 16 Jan 2025 03:24:50 -0600 Subject: [PATCH 36/40] fuck this it works im shipping it. --- code/modules/projectiles/guns/rifles.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index c626326a157..36228b6fbbc 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1290,14 +1290,14 @@ set_burst_delay(FIRE_DELAY_TIER_11) //hopefully, this will give it some reason to not just hold down trigger? Long lethal bursts. fa_scatter_peak = FULL_AUTO_SCATTER_PEAK_TIER_2 - fa_max_scatter = SCATTER_AMOUNT_TIER_1 + fa_max_scatter = SCATTER_AMOUNT_NEURO accuracy_mult = BASE_ACCURACY_MULT accuracy_mult_unwielded = BASE_ACCURACY_MULT - HIT_ACCURACY_MULT_TIER_2 - scatter = SCATTER_AMOUNT_TIER_5 + scatter = SCATTER_AMOUNT_TIER_4 burst_scatter_mult = -SCATTER_AMOUNT_TIER_10 scatter_unwielded = SCATTER_AMOUNT_TIER_1 damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2 - recoil_unwielded = RECOIL_AMOUNT_TIER_4 + recoil_unwielded = RECOIL_AMOUNT_TIER_5 aim_slowdown = SLOWDOWN_ADS_LMG wield_delay = WIELD_DELAY_SLOW From 4486b6036acec73b60ad515e5d186c1c5e6fb335 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Mon, 20 Jan 2025 21:28:06 -0600 Subject: [PATCH 37/40] tempfix --- code/game/objects/items/storage/backpack.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 92fd2c4a8ee..5c8fbfb8dee 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -673,8 +673,9 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r item_state = "upp_g8pouch" has_gamemode_skin = FALSE +//this preset is for the US Army machinegunner. It /obj/item/storage/backpack/general_belt/army/fill_preset_inventory() - for(var/i = 1 to storage_slots) + new /obj/item/ammo_magazine/hpr_box/ap (src) new /obj/item/ammo_magazine/hpr_box/ap (src) // Scout Cloak From 5d6c97dd1c9b3a1ae2346243bd2ab8351a2247ac Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Mon, 20 Jan 2025 21:32:26 -0600 Subject: [PATCH 38/40] hopefully working --- code/game/objects/items/storage/backpack.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 5c8fbfb8dee..bafb9f29b26 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -673,7 +673,10 @@ GLOBAL_LIST_EMPTY_TYPED(radio_packs, /obj/item/storage/backpack/marine/satchel/r item_state = "upp_g8pouch" has_gamemode_skin = FALSE -//this preset is for the US Army machinegunner. It +//this preset is for the US Army machinegunner. +/obj/item/storage/backpack/general_belt/army + desc = "A small light pouch that can be fitted around the waist or back. Used as a mass pouch for bulkier magazines." +//this fills the preset's ammo belt /obj/item/storage/backpack/general_belt/army/fill_preset_inventory() new /obj/item/ammo_magazine/hpr_box/ap (src) new /obj/item/ammo_magazine/hpr_box/ap (src) From 0c563f54dfcee6f528f6394829d2bec3fa369ff3 Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Sun, 26 Jan 2025 00:39:11 -0600 Subject: [PATCH 39/40] AI fixes. --- code/modules/mob/living/carbon/human/ai/ai_equipment.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/ai/ai_equipment.dm b/code/modules/mob/living/carbon/human/ai/ai_equipment.dm index 569266acf1e..bac873af341 100644 --- a/code/modules/mob/living/carbon/human/ai/ai_equipment.dm +++ b/code/modules/mob/living/carbon/human/ai/ai_equipment.dm @@ -305,9 +305,9 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3, WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/tool/crowbar, WEAR_IN_BACK) spawn_merc_weapon(new_human,1,6) - spawn_weapon(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/rifle/lmg, new_human, 0, 5) //HPR mini-spec - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/holo_target, WEAR_IN_BACK) - new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/lmg/holo_target, WEAR_IN_BACK) + spawn_weapon(/obj/item/weapon/gun/rifle/lmg, /obj/item/ammo_magazine/hpr_box, new_human, 0, 5) //HPR mini-spec + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/holo_target, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/hpr_box/holo_target, WEAR_IN_BACK) /datum/equipment_preset/other/freelancer/medic/ai name = "Freelancer (Medic) (AI)" From 4ed1d6ea997d8e3e977592782e87528f4da7ecfd Mon Sep 17 00:00:00 2001 From: KoishiVibe Date: Wed, 29 Jan 2025 14:36:00 -0600 Subject: [PATCH 40/40] bugfixes. thanks andro! --- code/modules/projectiles/guns/rifles.dm | 4 +--- code/modules/projectiles/magazines/misc.dm | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/code/modules/projectiles/guns/rifles.dm b/code/modules/projectiles/guns/rifles.dm index 731ff2c1430..41ce9391d00 100644 --- a/code/modules/projectiles/guns/rifles.dm +++ b/code/modules/projectiles/guns/rifles.dm @@ -1265,7 +1265,6 @@ fire_sound = "gun_pulse" aim_slowdown = SLOWDOWN_ADS_LMG current_mag = /obj/item/ammo_magazine/hpr_box - starting_attachment_types = list(/obj/item/attachable/bipod/integral) attachable_allowed = list( /obj/item/attachable/suppressor, /obj/item/attachable/reddot, @@ -1292,7 +1291,6 @@ /obj/item/weapon/gun/rifle/lmg/set_gun_attachment_offsets() attachable_offset = list("muzzle_x" = 33, "muzzle_y" = 19,"rail_x" = 10, "rail_y" = 23, "under_x" = 26, "under_y" = 16, "stock_x" = 24, "stock_y" = 13) - /obj/item/weapon/gun/rifle/lmg/set_gun_config_values() ..() set_fire_delay(FIRE_DELAY_TIER_11) @@ -1321,7 +1319,7 @@ /obj/item/weapon/gun/rifle/lmg/army current_mag = /obj/item/ammo_magazine/hpr_box/ap - starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel) + starting_attachment_types = list(/obj/item/attachable/magnetic_harness, /obj/item/attachable/extended_barrel, /obj/item/attachable/bipod/integral) /obj/item/weapon/gun/rifle/lmg/army/set_gun_config_values() ..() damage_mult = BASE_BULLET_DAMAGE_MULT + BULLET_DAMAGE_MULT_TIER_2//equal to m41a dmg diff --git a/code/modules/projectiles/magazines/misc.dm b/code/modules/projectiles/magazines/misc.dm index 6d8cd35684e..f99a0b87fca 100644 --- a/code/modules/projectiles/magazines/misc.dm +++ b/code/modules/projectiles/magazines/misc.dm @@ -44,13 +44,13 @@ /obj/item/ammo_magazine/hpr_box/ap name = "\improper M41AE2 AP ammo box (10x24mm)" desc = "A magazine of steelcore armor piercing rounds for the M41AE2 Heavy Pulse Rifle." - default_ammo = /datum/ammo/bullet/rifle/heap + default_ammo = /datum/ammo/bullet/rifle/ap max_rounds = 300 gun_type = /obj/item/weapon/gun/rifle/lmg ammo_band_color = AMMO_BAND_COLOR_HEAP /obj/item/ammo_magazine/hpr_box/heap - name = "\improper M41AE2 APHE ammo box (10x24mm)" + name = "\improper M41AE2 HEAP ammo box (10x24mm)" desc = "A magazine of M903 armor piercing high explosive rounds for the M41AE2 Heavy Pulse Rifle." default_ammo = /datum/ammo/bullet/rifle/heap max_rounds = 300