Merge pull request #70 from evilew/tweaking

mage hand, map tweaks, fatty loot
This commit is contained in:
evilew
2025-01-19 21:42:33 +01:00
committed by GitHub
17 changed files with 1587 additions and 654 deletions
+40
View File
@@ -90,3 +90,43 @@
if(HAS_TRAIT(L, TRAIT_VORACIOUS))
fullness_add = fullness_add * 0.67
L.fullness += (fullness_add)
//should probably put this in elsewhere or whatever, but for now it'll do
/mob/living/simple_animal/hostile/fatten/magehand
name = "Magehand"
desc = "It's a floating mage hand of strange, crackling orange energy..."
icon = 'GainStation13/icons/mob/fathand.dmi'
icon_state = "fathand"
icon_living = "fathand"
icon_dead = "fathand_dead"
speak_emote = list("crackles")
emote_hear = list("crackles")
speak_chance = 5
turns_per_move = 5
aggro_vision_range = 10
see_in_dark = 10
maxHealth = 20
health = 20
del_on_death = TRUE
movement_type = FLYING
attack_verb_continuous = "pokes"
attack_verb_simple = "pokes"
a_intent = INTENT_HARM
pass_flags = PASSTABLE
move_to_delay = 2
attack_sound = 'sound/weapons/pulse.ogg'
unique_name = 1
faction = list(ROLE_WIZARD)
lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_VISIBLE
/mob/living/simple_animal/hostile/fatten
var/fat_per_hit = 30
/mob/living/simple_animal/hostile/fatten/AttackingTarget()
. = ..()
var/mob/living/carbon/L = target
if(L.client?.prefs?.weight_gain_magic)
L.adjust_fatness(fat_per_hit)
@@ -38,6 +38,21 @@
/obj/item/reagent_containers/glass/beaker/flatulose
list_reagents = list(/datum/reagent/consumable/flatulose = 50)
/obj/item/reagent_containers/glass/beaker/galbanic
list_reagents = list(/datum/reagent/fermi_fat = 50)
/obj/item/reagent_containers/glass/beaker/macarenic
list_reagents = list(/datum/reagent/fermi_slim = 50)
//evil fucking donut
/obj/item/reagent_containers/food/snacks/donut/evil_superfat
name = "Evil Fuckin' Donut"
desc = "Merely looking at this thing makes you feel like you're getting fat..."
bitesize = 100 // Always eat it in one bite
list_reagents = list(/datum/reagent/fermi_fat = 120, /datum/reagent/consumable/lipoifier = 70, /datum/reagent/consumable/cornoil = 70)
tastes = list("imminent immobility" = 10)
//blueberry gum snack
/obj/item/reagent_containers/food/snacks/blueberry_gum
@@ -223,3 +238,40 @@
volume = 250
custom_materials = list(/datum/material/plastic=1000)
w_class = WEIGHT_CLASS_HUGE
//weapon prefabs
/obj/item/melee/curator_whip/fattening
name = "calorite-lined whip"
desc = "The whip seems to glisten with an orange gleam inbetween its threads."
damtype = "fat"
attack_verb = list("fattened")
force = 40
/obj/item/melee/curator_whip/permafattening
name = "galbanic whip"
desc = "How can a whip even be infused galbanic? No one knows."
damtype = "perma_fat"
attack_verb = list("fattened")
force = 20
/obj/item/gavelhammer/fattening
desc = "Some madman managed to create a weapon out of calorite... Luckily, it has a rubber handle for you to wield."
name = "Calorite Hammer"
icon = 'icons/obj/items_and_weapons.dmi'
icon_state = "toyhammer"
damtype = "fat"
throwforce = 40
force = 60
attack_verb = list("fattened")
/obj/item/gavelhammer/permafattening
desc = "You may ask yourself - how did someone make a hammer out of a chemical? The answer is clear: no one knows."
name = "Permafat Hammer"
icon = 'icons/obj/items_and_weapons.dmi'
icon_state = "toyhammer"
damtype = "perma_fat"
throwforce = 10
force = 20
attack_verb = list("fattened")
Binary file not shown.

After

Width:  |  Height:  |  Size: 576 B

@@ -1,8 +1,8 @@
"a" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
"c" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"d" = (/obj/structure/cursedfatfountain,/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"d" = (/obj/structure/table/bronze,/obj/item/melee/curator_whip,/turf/open/floor/mineral/calorite/dance,/area/ruin/powered/gluttony)
"i" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"j" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; color = "#ffa500"},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"j" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; color = "#ffa500"},/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"k" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"l" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/railing{color = FFA500; dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"o" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/railing{color = FFA500},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
@@ -25,12 +25,13 @@
"O" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/mineral/calorite/hide,/area/ruin/powered/gluttony)
"P" = (/turf/open/lava/smooth/lava_land_surface,/area/ruin/powered/gluttony)
"R" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/railing{color = FFA500; dir = 4},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"S" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cursedfatfountain,/turf/open/floor/plasteel,/area/ruin/powered/gluttony)
"T" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"U" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/railing{color = FFA500; dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"V" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/mineral_door/calorite,/turf/open/floor/mineral/calorite/hide,/area/ruin/powered/gluttony)
"W" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"X" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 8; color = "#ffa500"},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"Y" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"X" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 8; color = "#ffa500"},/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
"Y" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/plasteel/cult,/area/ruin/powered/gluttony)
(1,1,1) = {"
yyyyyyyyyyyyy
@@ -46,7 +47,7 @@ yyyPPKOKPPyyy
yyyyKKOKKyyyy
yyyKKIOIKKyyy
yyyKoJvWoKyyy
yyyKMlvRGKyyy
yyyKMlSRGKyyy
yyyKUNvsUKyyy
yyyKKNvsKKyyy
ayyyKkvzKyyyy
@@ -3,12 +3,15 @@
"bt" = (/turf/open/floor/mineral/calorite,/area/ruin/unpowered/caloriteshrine)
"ch" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/chair/wood,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"cs" = (/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"da" = (/obj/structure/table/wood/fancy,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/statue/fatso{pixel_y = 11},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"da" = (/obj/structure/table/wood/fancy,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/gavelhammer/fattening,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"de" = (/turf/open/indestructible/cobble/side,/area/lavaland/surface/outdoors)
"eF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 2},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"gs" = (/obj/structure/statue/fatso{pixel_y = 11},/turf/open/floor/mineral/calorite,/area/ruin/unpowered/caloriteshrine)
"gI" = (/obj/structure/chair/sofa/right/old,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"hd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"ho" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"iJ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"jP" = (/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"kf" = (/obj/structure/bonfire,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"kz" = (/obj/structure/table/bronze,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"kB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 2},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
@@ -21,6 +24,7 @@
"ok" = (/obj/item/trash/cheesie,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"oH" = (/obj/structure/table/bronze,/obj/item/trash/plate{pixel_y = 2},/obj/item/trash/plate{pixel_y = 5},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"pw" = (/obj/structure/mineral_door/calorite,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"pF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/item/reagent_containers/food/drinks/bigbottle/fizz{pixel_x = -16; pixel_y = 8},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"pI" = (/obj/effect/decal/cleanable/ash/large,/turf/open/floor/plating/asteroid/basalt,/area/template_noop)
"pV" = (/turf/open/floor/plating/asteroid/basalt,/area/template_noop)
"qX" = (/obj/item/borg/upgrade/fatoray,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
@@ -38,6 +42,7 @@
"uL" = (/obj/structure/chair/sofa/corner/old,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"vN" = (/obj/structure/table/wood/fancy/orange,/obj/item/reagent_containers/food/snacks/burger/rib,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"wt" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"xB" = (/obj/structure/table/wood/fancy/orange,/obj/item/reagent_containers/food/drinks/bigbottle/spaceup{pixel_y = 20},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"xI" = (/turf/open/indestructible/cobble/side{dir = 8},/area/lavaland/surface/outdoors)
"xY" = (/turf/open/indestructible/cobble,/area/lavaland/surface/outdoors)
"yr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
@@ -48,9 +53,11 @@
"AQ" = (/obj/structure/chair/bronze,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"Bz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/trap/fattening,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"CT" = (/obj/machinery/grill,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"DJ" = (/obj/structure/table/bronze,/obj/item/reagent_containers/food/drinks/bigbottle/cola{pixel_y = 6; pixel_x = 8},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"FP" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"FU" = (/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
"Go" = (/turf/open/indestructible/cobble/corner{dir = 4},/area/lavaland/surface/outdoors)
"Gv" = (/mob/living/simple_animal/hostile/fatten/magehand,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"IX" = (/obj/item/flashlight/lantern{anchored = 1; icon_state = null; icon = null},/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
"Jx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/reagent_containers/food/drinks/soda_cans/fizzwiz,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"JC" = (/obj/item/trash/blueberry_gum,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
@@ -73,6 +80,8 @@
"TL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 2},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"TW" = (/obj/structure/statue/calorite/fatty{anchored = 1},/obj/item/flashlight/lantern{anchored = 1; icon_state = null; icon = null},/turf/open/floor/mineral/calorite/strong,/area/ruin/unpowered/caloriteshrine)
"Ul" = (/obj/item/trash/waffles,/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Vx" = (/obj/structure/table/bronze,/obj/item/reagent_containers/food/drinks/bigbottle/cola{pixel_y = 8; pixel_x = -4},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"VI" = (/obj/item/reagent_containers/food/drinks/bigbottle/starkist{pixel_x = -10; pixel_y = -8},/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"VL" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/mineral/crimsonstone_floor,/area/ruin/unpowered/caloriteshrine)
"Wa" = (/obj/item/candle/infinite,/turf/open/floor/carpet/red,/area/ruin/unpowered/caloriteshrine)
"Wt" = (/obj/effect/decal/cleanable/ash/large,/turf/open/floor/plating/asteroid/basalt,/area/lavaland/surface/outdoors)
@@ -95,17 +104,17 @@ mRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRmRpVTnmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRmRmRpVpVpVpVpVpVAqAqAqAqAqAqAqAqAqAqAqpVpVpVpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVpVAqAqAqAqbtbtbtbtbtbtbtbtbtAqAqAqAqpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVpVAqAqAqAqbtbtbtbtgsbtbtbtbtAqAqAqAqpVpVpVmRmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVAqAqbtbtbtJxSwBzZLdaZLBzSwkBbtbtbtAqAqpVpVpVmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVAqbtYeSwSwkFTWcssfsfsfcsTWaFSwSwkBbtAqTnpVpVmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVAqAqbthdcscsQMPaPaPaPaPaPaPahocscseFbtAqAqpVpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVAqAqbtYecscsAqyrlynWlyAQlyyRlyhdAqcsYMsqbtAqAqpVTnmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVpVAqbtYeSwSwkFTWcssfsfsfjPTWaFSwSwkBbtAqTnpVpVmRmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVpVAqAqbthdcscsQMiJPaPaPaPaPaPahocscseFbtAqAqpVpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVpVAqAqbtYecscsAqyrlynWlyAQGvyRlyhdAqcsYMsqbtAqAqpVTnmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRmRpVTnAqbtwtcsgIYzuLyrsuWNrhkzAdkzsAhdSUcscsYMTLbtAqpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqAqbthdTWZUvNkGyrlykzWaCTWaPYlyhdcsOccsTWeFbtAqAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtYekFcscsSUUlyrsuQKlykflyoHlyhdcsgIRVcsaFVLbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqAqbthdTWZUvNkGpFlykzWaCTWaPYVIhdcsOcjPTWeFbtAqAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtYekFcsjPSUUlyrsuQKlykflyoHlyhdcsgIRVcsaFVLbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbthdcsAqcscscsyrlyWzlykfmSQTlychcsXXsaAqcsNIbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbthdqXAqcscscsJCsukzuDlyWakzlyokcsZUsaAqcsNIbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtushocscscscsyrlysIkzlyWzkzsAhdcsZUkGcsQMaGbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbthdqXAqcscscsJCsuDJuDlyWakzlyokcsZUsaAqcsNIbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqbtushocscscscsyrlysIkzlyWzVxsAhdcsxBkGcsQMaGbtAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVAqAqbthdTWcscsAqyrlytVtVlytVtVlyhdAqcscsTWyrbtAqAqpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVpVAqbtushocscscsaFSwSwSwSwSwSwSwkFRGcscsQMNrbtAqpVpVmRmRmRmRmRmRmRmRmR
mRmRmRmRmRmRmRmRpVpVTnAqAqbtFPPaPaPahoTWcscscscscsTWQMPaPaPasYbtAqAqpVpVmRmRmRmRmRmRmRmRmR
+219 -69
View File
@@ -28,7 +28,6 @@
/turf/open/floor/plating,
/area/ruin/space/djstation)
"ai" = (
/obj/machinery/telecomms/relay/preset/ruskie,
/obj/machinery/light{
dir = 1
},
@@ -36,11 +35,11 @@
/area/ruin/space/djstation)
"aj" = (
/obj/machinery/power/terminal,
/turf/open/floor/plating,
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"ak" = (
/obj/item/multitool,
/turf/open/floor/plating,
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"al" = (
/obj/item/storage/toolbox/mechanical{
@@ -61,13 +60,13 @@
desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
name = "power storage unit"
},
/turf/open/floor/plating,
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"ao" = (
/obj/structure/cable{
icon_state = "1-2"
},
/turf/open/floor/plating,
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"ap" = (
/obj/structure/cable{
@@ -108,29 +107,37 @@
/area/ruin/space/djstation)
"au" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"av" = (
/obj/machinery/vending/snack,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aw" = (
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"ax" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"ay" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"az" = (
/obj/structure/table,
@@ -180,31 +187,34 @@
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aG" = (
/obj/machinery/door/airlock/public/glass{
name = "Kitchen"
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aH" = (
/obj/structure/table,
/obj/item/radio/intercom{
broadcasting = 0;
dir = 8;
freerange = 1;
listening = 1;
name = "Pirate Radio Listening Channel"
/obj/effect/turf_decal/loading_area{
dir = 4;
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain";
dir = 1
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"aI" = (
/obj/structure/chair/office/light,
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
icon_state = "steel_decals_central6"
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aJ" = (
/obj/machinery/door/airlock/public/glass{
name = "Rest Room"
dir = 8
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aK" = (
/turf/open/floor/plasteel/grimy,
@@ -244,28 +254,43 @@
/area/ruin/space/djstation)
"aP" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"aQ" = (
/obj/structure/table,
/obj/item/radio/intercom{
broadcasting = 1;
dir = 8;
freerange = 1;
listening = 0;
name = "Pirate Radio Broadcast Channel"
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"aR" = (
/obj/structure/table,
/obj/item/paper/fluff/ruins/djstation,
/turf/open/floor/plasteel/cafeteria,
/obj/structure/table,
/obj/effect/turf_decal/loading_area{
dir = 4;
icon_state = "drain";
name = "drain"
},
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"aS" = (
/obj/structure/frame/computer{
anchored = 1
anchored = 1;
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/ruin/space/djstation)
@@ -291,33 +316,65 @@
/obj/machinery/door/airlock/hatch{
name = "Washroom"
},
/obj/effect/turf_decal/loading_area{
dir = 1;
icon_state = "borderfloor";
name = "drain"
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/djstation)
"aY" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 6;
icon_state = "steel_decals6"
},
/obj/effect/turf_decal/loading_area{
dir = 5;
icon_state = "steel_decals6"
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"aZ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating/airless,
/area/space/nearstation)
"ba" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/djstation)
"bb" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"bc" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/machinery/space_heater,
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"bd" = (
/obj/structure/window/reinforced{
@@ -326,7 +383,15 @@
/obj/structure/rack,
/obj/item/clothing/under/costume/soviet,
/obj/item/clothing/head/ushanka,
/turf/open/floor/plasteel/cafeteria,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"be" = (
/obj/structure/sink{
@@ -334,13 +399,28 @@
pixel_x = -12;
pixel_y = 2
},
/obj/machinery/light/small,
/obj/structure/mirror{
name = "dusty mirror";
pixel_x = -26
},
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/djstation)
"bf" = (
/obj/structure/toilet{
pixel_y = 8
},
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain"
},
/obj/machinery/shower{
dir = 8;
pixel_y = -4
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/djstation)
"bg" = (
@@ -350,13 +430,13 @@
pixel_y = 9
},
/obj/item/pen,
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"bh" = (
/obj/structure/sign/warning/vacuum/external{
pixel_y = -32
},
/turf/open/floor/plasteel/cafeteria,
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"bi" = (
/obj/machinery/door/airlock/external{
@@ -372,6 +452,47 @@
/obj/structure/disposaloutlet,
/turf/open/floor/plating/airless,
/area/space/nearstation)
"bZ" = (
/obj/item/radio/intercom{
broadcasting = 0;
dir = 8;
freerange = 1;
listening = 1;
name = "Pirate Radio Listening Channel";
pixel_y = -14;
pixel_x = 12
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"gS" = (
/obj/effect/turf_decal/loading_area{
dir = 6;
icon_state = "steel_decals6"
},
/obj/effect/turf_decal/loading_area{
dir = 5;
icon_state = "steel_decals6"
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"mU" = (
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"vh" = (
/obj/machinery/telecomms/relay/preset/ruskie,
/turf/open/floor/catwalk_floor,
/area/ruin/space/djstation)
"zm" = (
/obj/item/radio/intercom{
broadcasting = 1;
dir = 8;
freerange = 1;
listening = 0;
name = "Pirate Radio Broadcast Channel";
pixel_y = -14
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"Co" = (
/obj/machinery/door/airlock/external{
name = "Ruskie DJ Station"
@@ -381,6 +502,35 @@
},
/turf/open/floor/plating,
/area/ruin/space/djstation)
"Kw" = (
/obj/structure/table,
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/obj/effect/turf_decal/loading_area{
icon_state = "drain";
name = "drain";
dir = 1
},
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
"To" = (
/obj/item/radio/intercom{
broadcasting = 0;
dir = 8;
freerange = 1;
listening = 1;
name = "Pirate Radio Listening Channel";
pixel_y = -14;
pixel_x = -12
},
/turf/open/floor/plasteel,
/area/ruin/space/djstation)
"Xy" = (
/turf/open/floor/plasteel/dark,
/area/ruin/space/djstation)
(1,1,1) = {"
aa
@@ -523,7 +673,7 @@ af
af
af
ag
aG
aJ
ag
af
af
@@ -547,10 +697,10 @@ ah
ap
af
au
aw
aw
aw
aw
aG
aG
aG
gS
af
af
af
@@ -565,17 +715,17 @@ ad
ad
ag
ah
ah
ah
ah
ah
mU
mU
mU
mU
aq
af
av
aw
aH
bZ
Kw
aP
aw
gS
bb
bg
af
@@ -590,19 +740,19 @@ ac
ac
af
ai
ah
vh
aj
an
ao
ar
at
aw
aw
aG
zm
aI
aQ
gS
aw
aw
aw
Xy
af
aa
aa
@@ -615,17 +765,17 @@ ad
ad
ag
ah
ah
mU
ak
ah
ah
mU
mU
ah
af
ax
aw
To
aH
aR
aw
gS
bc
bh
af
@@ -647,12 +797,12 @@ ah
as
af
ay
aw
aw
aw
aG
aG
aG
aY
bd
aw
Xy
bi
ah
Co
+74 -32
View File
@@ -1,7 +1,7 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/bed,
/obj/item/bedsheet,
/obj/structure/bed/double,
/obj/item/bedsheet/double_red,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"c" = (
@@ -27,8 +27,15 @@
/area/ruin/space)
"i" = (
/obj/structure/fireplace{
dir = 8
dir = 8;
pixel_x = -22
},
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"j" = (
@@ -72,8 +79,15 @@
/obj/item/plant_analyzer,
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"x" = (
/turf/open/floor/carpet/red,
/area/ruin/space/has_grav/powered)
"y" = (
/obj/structure/dresser,
/obj/item/kirbyplants/random,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"z" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"A" = (
@@ -81,12 +95,21 @@
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"C" = (
/obj/structure/chair/wood/normal{
dir = 1
},
/obj/item/instrument/guitar,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"D" = (
/obj/item/chair/wood,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"E" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/obj/structure/mirror{
name = "dusty mirror";
pixel_y = 32
},
/turf/open/floor/plasteel/showroomfloor,
/area/ruin/space/has_grav/powered)
"F" = (
@@ -94,21 +117,26 @@
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"J" = (
/obj/machinery/light,
/obj/structure/rack/shelf,
/obj/item/reagent_containers/rag/towel,
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/showroomfloor,
/area/ruin/space/has_grav/powered)
"K" = (
/obj/structure/table/wood,
/obj/machinery/light{
dir = 4
},
/obj/item/reagent_containers/food/drinks/bottle/wine,
/obj/structure/dresser,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"L" = (
/obj/structure/mirror{
pixel_x = 28
},
/obj/effect/turf_decal/bot,
/obj/machinery/shower{
dir = 8;
@@ -120,14 +148,22 @@
/obj/structure/toilet{
dir = 4
},
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/turf/open/floor/plasteel/showroomfloor,
/area/ruin/space/has_grav/powered)
"N" = (
/obj/structure/rack,
/obj/item/stack/sheet/mineral/wood,
/obj/item/stack/sheet/mineral/wood,
/obj/structure/table/wood,
/obj/item/reagent_containers/food/drinks/bottle/wine,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"O" = (
/obj/structure/rack,
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"P" = (
/obj/structure/table/wood,
/obj/item/clothing/head/festive,
@@ -140,6 +176,12 @@
/obj/item/shovel/spade,
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"V" = (
/obj/structure/chair/sofachair{
dir = 4
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered)
"W" = (
/obj/item/cultivator,
/turf/open/floor/plating/asteroid/airless,
@@ -234,9 +276,9 @@ d
d
p
p
O
d
d
d
O
e
j
p
@@ -298,10 +340,10 @@ W
d
t
Y
C
D
v
v
n
y
t
p
d
@@ -318,9 +360,9 @@ d
t
P
C
v
v
v
x
x
z
t
p
d
@@ -337,9 +379,9 @@ d
m
v
v
v
v
v
x
x
y
t
p
d
@@ -354,10 +396,10 @@ s
s
d
t
v
v
v
v
n
V
x
x
v
t
p
@@ -417,7 +459,7 @@ p
p
p
p
d
p
q
"}
(15,1,1) = {"
@@ -434,7 +476,7 @@ p
p
p
p
d
p
d
q
q
@@ -62,6 +62,7 @@
dir = 8
},
/obj/structure/spider/stickyweb,
/obj/item/trash/fatoray_scrap1,
/turf/open/floor/mineral/titanium/blue,
/area/ruin/space/has_grav)
"P" = (
+261 -79
View File
@@ -2,6 +2,25 @@
"a" = (
/turf/closed/wall/mineral/iron,
/area/ruin/space/has_grav)
"b" = (
/obj/structure/table,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/obj/item/radio/headset,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"c" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
dir = 4
},
/turf/open/floor/catwalk_floor,
/area/ruin/space/has_grav)
"d" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp,
@@ -22,8 +41,23 @@
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"h" = (
/obj/machinery/light/small,
/turf/open/floor/wood,
/obj/effect/turf_decal/loading_area{
dir = 5;
icon_state = "steel_panel";
name = "steel pannel"
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"i" = (
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"j" = (
/obj/structure/rack/shelf,
/obj/item/reagent_containers/food/snacks/cannedpeaches,
/obj/item/reagent_containers/food/snacks/cannedpeaches,
/obj/item/reagent_containers/food/snacks/cannedpeaches,
/obj/item/reagent_containers/food/snacks/cannedpeaches,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"k" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
@@ -36,20 +70,31 @@
/turf/open/floor/wood,
/area/ruin/space/has_grav)
"m" = (
/obj/structure/table/wood,
/turf/open/floor/wood,
/obj/effect/turf_decal/loading_area{
dir = 6;
icon_state = "steel_panel";
name = "steel pannel"
},
/obj/machinery/door/airlock/public{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"n" = (
/obj/item/export/bottle/vodka,
/obj/item/export/bottle/vodka{
pixel_y = 8;
pixel_x = -12
},
/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{
pixel_x = 12;
pixel_y = 5
},
/turf/open/floor/wood,
/area/ruin/space/has_grav)
"o" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/food/snacks/beans,
/obj/item/reagent_containers/food/snacks/beans,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/wood,
/obj/structure/table,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"p" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
@@ -64,6 +109,14 @@
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 8
},
/obj/effect/turf_decal/loading_area{
dir = 2;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 4;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"r" = (
@@ -75,17 +128,59 @@
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"u" = (
/obj/structure/chair/comfy/black{
dir = 1
"s" = (
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/obj/structure/toilet{
pixel_y = 6
},
/obj/machinery/shower{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"t" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/obj/item/clothing/gloves/color/yellow,
/obj/item/multitool,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"u" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1,
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"v" = (
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"w" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/obj/effect/turf_decal/loading_area{
dir = 6;
icon_state = "steel_decals3"
},
/obj/effect/turf_decal/loading_area{
icon_state = "steel_decals3"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"x" = (
@@ -104,19 +199,16 @@
dir = 4
},
/obj/machinery/door/airlock/highsecurity,
/obj/structure/fans/tiny,
/turf/open/floor/plasteel,
/turf/open/floor/catwalk_floor,
/area/ruin/space/has_grav)
"A" = (
/obj/structure/table/wood,
/obj/item/export/bottle/wine,
/obj/item/reagent_containers/food/drinks/drinkingglass,
/obj/item/reagent_containers/food/drinks/drinkingglass,
/turf/open/floor/wood,
/obj/machinery/computer/security{
dir = 8
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"B" = (
/obj/structure/table/wood,
/obj/item/storage/box/donkpockets,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
},
@@ -135,17 +227,34 @@
/obj/machinery/light/small{
dir = 4
},
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"F" = (
/obj/structure/table,
/obj/item/storage/firstaid/regular,
/obj/machinery/computer/crew{
dir = 8
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"G" = (
/obj/machinery/computer/security,
/obj/effect/turf_decal/loading_area{
icon_state = "steel_decals_central6"
},
/obj/item/chair,
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"I" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"J" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
dir = 9
@@ -153,18 +262,56 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/ruin/space/has_grav)
"K" = (
/obj/structure/table,
/obj/item/storage/box/donkpockets,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"L" = (
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "drain";
name = "drain"
},
/obj/structure/sink{
dir = 8;
pixel_x = -12
},
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"M" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
dir = 4
},
/obj/structure/fans/tiny,
/obj/machinery/door/airlock/external{
name = "Escape Airlock";
dir = 4
},
/turf/open/floor/catwalk_floor,
/area/ruin/space/has_grav)
"N" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical,
/obj/item/clothing/gloves/color/yellow,
/obj/item/multitool,
/turf/open/floor/plasteel,
/obj/item/storage/firstaid/regular,
/obj/structure/window/reinforced/spawner{
dir = 8
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"O" = (
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"P" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1,
/obj/effect/turf_decal/loading_area{
dir = 5;
icon_state = "steel_decals6"
},
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"Q" = (
@@ -172,21 +319,50 @@
dir = 1
},
/obj/structure/table/wood,
/obj/machinery/microwave,
/obj/item/reagent_containers/food/snacks/beans,
/turf/open/floor/wood,
/area/ruin/space/has_grav)
"R" = (
/obj/structure/table,
/obj/item/reagent_containers/food/snacks/beans,
/obj/effect/turf_decal/loading_area{
dir = 9;
icon_state = "steel_decals10"
},
/obj/effect/turf_decal/loading_area{
dir = 10;
icon_state = "steel_decals10"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"S" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/catwalk_floor,
/area/ruin/space/has_grav)
"T" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer1{
dir = 6
},
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/wood,
/area/ruin/space/has_grav)
"U" = (
/obj/machinery/sleeper,
/turf/open/floor/plasteel,
/obj/effect/turf_decal/loading_area{
icon_state = "steel_decals_central6"
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
"V" = (
/obj/machinery/computer/crew,
/obj/effect/turf_decal/loading_area{
dir = 8;
icon_state = "steel_decals_central4"
},
/turf/open/floor/plasteel,
/area/ruin/space/has_grav)
"W" = (
@@ -203,6 +379,12 @@
},
/turf/open/floor/plating/asteroid/airless,
/area/ruin/space)
"Z" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/freezer,
/area/ruin/space/has_grav)
(1,1,1) = {"
e
@@ -283,7 +465,7 @@ C
C
v
v
v
C
C
C
C
@@ -327,7 +509,7 @@ C
C
v
v
C
v
C
C
C
@@ -349,8 +531,8 @@ C
C
v
v
C
C
v
v
C
C
C
@@ -369,10 +551,10 @@ C
C
C
C
v
v
v
C
Y
u
u
D
C
C
C
@@ -386,18 +568,18 @@ v
C
C
C
a
a
a
a
a
M
a
C
C
C
C
C
v
v
v
C
C
C
C
C
C
v
@@ -408,13 +590,13 @@ v
C
C
C
C
C
C
C
C
Y
D
a
s
L
a
S
c
a
C
C
C
@@ -430,17 +612,17 @@ C
C
C
C
C
a
a
m
a
a
z
a
C
C
C
C
a
a
a
a
C
C
C
@@ -452,16 +634,16 @@ C
C
C
C
C
a
t
V
O
x
O
k
a
a
a
a
h
i
Z
j
a
C
C
@@ -474,16 +656,16 @@ C
C
C
C
C
a
b
G
u
O
O
k
a
l
f
f
I
K
o
a
C
C
@@ -496,16 +678,16 @@ C
C
C
C
C
a
R
F
O
A
P
W
a
d
n
h
a
a
a
a
C
C
@@ -518,7 +700,7 @@ C
C
C
C
C
a
a
a
N
@@ -569,9 +751,9 @@ a
a
q
a
m
o
A
l
f
d
a
C
v
+206 -170
View File
@@ -77,10 +77,10 @@
"aby" = (/obj/structure/window/reinforced/tinted{dir = 4},/obj/machinery/door/poddoor/shutters{id = "visitation"; name = "Visitation Shutters"},/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abz" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/door/poddoor/shutters{id = "visitation"; name = "Visitation Shutters"},/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abA" = (/obj/machinery/door/poddoor/shutters{id = "visitation"; name = "Visitation Shutters"},/obj/machinery/door/window/southleft,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abB" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abB" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/light{dir = 8},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Prison Visitation"; dir = 8; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"abD" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/office)
"abE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Firing Range"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/range)
"abE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Firing Range"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/magnetic_controller{autolink = 1; pixel_y = 3},/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/open/floor/plasteel/dark,/area/security/range)
"abF" = (/obj/structure/table/wood,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/cafeteria,/area/service/theater)
"abG" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/security/brig)
"abH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/big_gato,/turf/open/floor/plasteel,/area/security/brig)
@@ -127,7 +127,7 @@
"acw" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"acx" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"acy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/upper)
"acz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = -28},/turf/open/floor/plasteel,/area/security/brig)
"acz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = -28},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/brig)
"acA" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/camera{c_tag = "Brig Equipment Room"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/security/office)
"acB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/office)
"acC" = (/turf/closed/wall/r_wall,/area/security/prison/cells)
@@ -253,7 +253,7 @@
"aeS" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/blood/old,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/prison/upper)
"aeT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
"aeU" = (/obj/structure/rack,/obj/structure/window/reinforced,/obj/item/storage/box/teargas{pixel_x = -1; pixel_y = 1},/obj/item/storage/box/flashbangs{pixel_x = 1; pixel_y = -1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/bot,/obj/item/radio/intercom{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"aeV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/radio/intercom{pixel_y = 20},/turf/open/floor/plasteel,/area/security/range)
"aeV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/radio/intercom{pixel_y = 20},/turf/open/floor/plasteel/dark,/area/security/range)
"aeW" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/secbot{arrest_type = 1; health = 45; icon_state = "secbot1"; idcheck = 1; name = "Sergeant-at-Armsky"; weaponscheck = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"aeX" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel,/area/service/theater)
"aeY" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun,/obj/item/gun/energy/e_gun{pixel_x = 3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
@@ -266,7 +266,7 @@
"aff" = (/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"afg" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/brig)
"afh" = (/obj/machinery/power/apc{areastring = "/area/command/heads_quarters/hos"; dir = 8; name = "Head of Security's Office APC"; pixel_x = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/bed/dogbed{desc = "A comfy-looking pet bed. You can even strap your pet in, in case the gravity turns off."; name = "pet bed"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/mob/living/simple_animal/hostile/retaliate/bat/secbat{desc = "An adorable fruit bat with a cute little hat, may or may not have a reputation for biting out eyeballs, or at least that's what the HoS'd tell you."; name = "Colonel Chomps"},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos)
"afi" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Shooting Range"},/turf/open/floor/plating,/area/security/range)
"afi" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Shooting Range"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/security/range)
"afj" = (/turf/open/floor/padded,/area/security/execution/transfer)
"afk" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/firealarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/prison/upper)
"afl" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/wood,/area/crew_quarters/fitness)
@@ -310,7 +310,7 @@
"afX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "hos"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/command/heads_quarters/hos)
"afY" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/fore/secondary)
"afZ" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/security/prison/upper)
"aga" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/light_switch{pixel_x = -7; pixel_y = -24},/turf/open/floor/plasteel,/area/security/range)
"aga" = (/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/light_switch{pixel_x = -7; pixel_y = -24},/turf/open/floor/plasteel/dark,/area/security/range)
"agb" = (/obj/machinery/door/airlock/security{name = "Isolation Cell"; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"agc" = (/obj/structure/table/glass,/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/regular,/obj/item/reagent_containers/glass/bottle/charcoal{pixel_x = 2; pixel_y = 2},/obj/item/reagent_containers/glass/bottle/epinephrine{pixel_x = -2; pixel_y = -2},/obj/item/reagent_containers/syringe{name = "steel point"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/brig)
"agd" = (/turf/closed/wall,/area/security/brig)
@@ -389,7 +389,7 @@
"ahy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "permacells2"; name = "Privacy Shutters"; pixel_x = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells)
"ahz" = (/obj/item/paper_bin/bundlenatural{pixel_x = 6; pixel_y = 4},/obj/item/paper_bin{pixel_x = -6; pixel_y = 4},/obj/item/pen/fountain,/obj/item/folder/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/pen,/obj/structure/table,/turf/open/floor/plasteel,/area/security/office)
"ahA" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"ahB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/security/range)
"ahB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/range)
"ahC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"ahD" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"ahE" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
@@ -517,10 +517,10 @@
"ajW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"ajX" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/cable,/turf/open/floor/plating,/area/security/brig)
"ajY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/ai_monitored/security/armory)
"ajZ" = (/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig)
"ajZ" = (/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/security/brig)
"aka" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
"akb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/security/range)
"akc" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"akb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/security/range)
"akc" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig)
"akd" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/warden)
"ake" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden)
"akf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/warden)
@@ -574,9 +574,9 @@
"alb" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/security/brig)
"alc" = (/obj/machinery/door/poddoor/preopen{id = "Cell Interior Shutters"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/brig)
"ald" = (/turf/open/floor/plasteel,/area/security/brig)
"ale" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig)
"ale" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/security/brig)
"alf" = (/obj/machinery/door/poddoor/preopen{id = "Cell Interior Shutters"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig)
"alg" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
"alg" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/brig)
"alh" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen{pixel_x = 4; pixel_y = 4},/obj/machinery/door/window/brigdoor{dir = 4; name = "Reception Desk"; req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Secure Brig Control"; name = "brig shutters"},/obj/machinery/door/window/southright{dir = 8; name = "Reception Desk"; req_access_txt = "63"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
"ali" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
"alj" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
@@ -672,7 +672,7 @@
"amW" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/item/stack/sheet/metal,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple,/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"amX" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"amY" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"amZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore)
"amZ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"ana" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"anb" = (/turf/open/floor/plasteel,/area/hallway/primary/fore)
"anc" = (/obj/structure/table/wood,/obj/item/storage/dice,/obj/item/instrument/piano_synth,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
@@ -900,20 +900,20 @@
"art" = (/obj/machinery/status_display{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"aru" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/commons/dorms)
"arv" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet,/area/commons/dorms)
"arw" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/red,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arw" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/red,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/commons/dorms)
"ary" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/commons/dorms)
"arz" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/blue,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arA" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arB" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arC" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Pool North"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arz" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/blue,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arA" = (/obj/structure/closet/secure_closet/personal,/obj/item/toy/poolnoodle/yellow,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/blue,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arB" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arC" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table/glass,/obj/machinery/camera{c_tag = "Pool North"},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arD" = (/turf/open/pool,/area/crew_quarters/fitness)
"arE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness)
"arF" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness)
"arG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness)
"arH" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arJ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table/glass,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arH" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arI" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 4},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arJ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"arK" = (/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness)
"arL" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness)
"arM" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/machinery/light_switch{dir = 9; pixel_x = 22},/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
@@ -955,9 +955,9 @@
"asw" = (/obj/machinery/light{dir = 8},/obj/structure/chair/sofa{color = "#c45c57"; dir = 4},/turf/open/floor/carpet,/area/crew_quarters/fitness)
"asx" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/commons/dorms)
"asy" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/structure/table/wood,/obj/item/candle{pixel_x = 8; pixel_y = 6},/obj/item/storage/dice{pixel_x = -3},/turf/open/floor/carpet,/area/crew_quarters/fitness)
"asz" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"asz" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"asA" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"asB" = (/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"asB" = (/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"asC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Fitness Maintenance"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/maintenance/fore/secondary)
"asD" = (/obj/structure/chair/sofa/right{color = "#c45c57"; dir = 4},/turf/open/floor/carpet,/area/crew_quarters/fitness)
"asE" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/carpet,/area/crew_quarters/fitness)
@@ -1005,7 +1005,7 @@
"atu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel,/area/commons/dorms)
"atv" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{pixel_x = 2; pixel_y = 7},/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game{pixel_x = -4; pixel_y = 3},/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{pixel_y = 24; name = "Pool APC"},/turf/open/floor/wood,/area/crew_quarters/fitness)
"atw" = (/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/vending/mealdor,/turf/open/floor/wood,/area/crew_quarters/fitness)
"atx" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"atx" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"atz" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"atA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/commons/dorms)
"atB" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/commons/dorms)
@@ -1017,7 +1017,7 @@
"atH" = (/obj/structure/dresser,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 14},/turf/open/floor/wood,/area/commons/dorms)
"atI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness)
"atJ" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
"atK" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"atK" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"atL" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"atM" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/catwalk_floor,/area/maintenance/starboard/fore)
"atN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
@@ -1053,7 +1053,7 @@
"aus" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"aut" = (/obj/structure/bed,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/bedsheet/gato,/turf/open/floor/carpet/gato,/area/commons/dorms)
"auu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/commons/dorms)
"auv" = (/obj/item/toy/poolnoodle/blue,/obj/structure/table,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"auv" = (/obj/item/toy/poolnoodle/blue,/obj/structure/table,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"auw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel,/area/commons/dorms)
"aux" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/commons/dorms)
"auy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/closet/wardrobe/pjs,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/commons/dorms)
@@ -1114,7 +1114,7 @@
"avB" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/commons/dorms)
"avC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/commons/dorms)
"avD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore/secondary)
"avE" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_x = 4; pixel_y = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/button/door{id = "Gymshutter"; name = "Shutters"; pixel_x = 23; pixel_y = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"avE" = (/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_x = 4; pixel_y = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/button/door{id = "Gymshutter"; name = "Shutters"; pixel_x = 23; pixel_y = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"avF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"avG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/medkit_cabinet{pixel_y = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/commons/dorms)
"avH" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
@@ -1240,13 +1240,13 @@
"ayb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
"ayc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/fore)
"ayd" = (/turf/closed/wall/r_wall,/area/ai_monitored/command/storage/eva)
"aye" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayf" = (/obj/structure/rack,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/hand_labeler,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayg" = (/obj/machinery/firealarm{pixel_y = 24},/obj/item/clothing/head/welding,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayh" = (/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 1; name = "EVA Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayi" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/radio/off,/obj/item/assembly/timer,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayj" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayk" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aye" = (/obj/structure/closet/crate/rcd,/obj/machinery/camera/motion{c_tag = "EVA Motion Sensor"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayf" = (/obj/structure/rack,/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/hand_labeler,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayg" = (/obj/machinery/firealarm{pixel_y = 24},/obj/item/clothing/head/welding,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayh" = (/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 1; name = "EVA Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayi" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/radio/off,/obj/item/assembly/timer,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayj" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayk" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ayl" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/command/storage/eva)
"aym" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/multitool,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"ayn" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
@@ -1303,7 +1303,7 @@
"azo" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{dir = 4; name = "EVA Maintenance"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/fore)
"azp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azq" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central6"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{dir = 4; name = "EVA Storage"; req_access_txt = "18"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"azu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
@@ -1324,10 +1324,10 @@
"azJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/carpet,/area/commons/dorms)
"azK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/stairs/left{dir = 8},/area/crew_quarters/fitness)
"azL" = (/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/commons/dorms)
"azM" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"azM" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/obj/structure/medkit_cabinet{pixel_y = 27},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"azN" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/commons/dorms)
"azO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 1; name = "Service Hall APC"; pixel_y = 25},/turf/open/floor/plasteel,/area/hallway/secondary/service)
"azP" = (/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel,/area/hallway/secondary/service)
"azO" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"azP" = (/obj/machinery/rnd/production/techfab/department/service,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"azQ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/maintenance/starboard/fore)
"azR" = (/turf/open/floor/carpet,/area/hallway/secondary/exit)
"azS" = (/obj/machinery/door/poddoor/preopen{id = "maint2"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
@@ -1370,13 +1370,13 @@
"aAE" = (/obj/machinery/power/apc{areastring = "/area/gateway"; dir = 8; name = "Gateway APC"; pixel_x = -24; pixel_y = -1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/catwalk_floor,/area/maintenance/fore)
"aAF" = (/obj/machinery/camera{c_tag = "EVA Maintenance"; dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/fore)
"aAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/command/storage/eva)
"aAH" = (/obj/structure/rack,/obj/machinery/light{dir = 8},/obj/item/tank/jetpack/carbondioxide/eva,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAI" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAH" = (/obj/structure/rack,/obj/machinery/light{dir = 8},/obj/item/tank/jetpack/carbondioxide/eva,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aAI" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aAJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAK" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAM" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAN" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAM" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aAN" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aAO" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/command/storage/eva)
"aAP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aAQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/command/storage/eva)
@@ -1387,9 +1387,9 @@
"aAV" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/turf/open/floor/carpet,/area/commons/dorms)
"aAW" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"aAX" = (/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
"aAY" = (/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/structure/closet,/obj/effect/landmark/blobstart,/obj/item/storage/box/donkpockets/donkpockethonk,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aAZ" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aBa" = (/obj/structure/table,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aAY" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aAZ" = (/obj/machinery/light{dir = 8},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aBa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/poster/contraband/corn_oil{pixel_x = 32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aBb" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aBc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry)
"aBd" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
@@ -1414,12 +1414,12 @@
"aBw" = (/obj/effect/turf_decal/bot_white/left,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aBx" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aBz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/fore)
"aBA" = (/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBD" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBE" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBA" = (/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aBB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aBC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBD" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBE" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/pen{desc = "Writes upside down!"; name = "astronaut pen"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aBG" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/command/storage/eva)
"aBH" = (/obj/machinery/camera{c_tag = "EVA East"; dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aBI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/maintenance/fore/secondary)
@@ -1439,9 +1439,9 @@
"aBX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness)
"aBY" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aBZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aCa" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aCb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aCc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/table,/obj/item/kitchen/rollingpin,/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aCa" = (/obj/effect/decal/cleanable/oil,/turf/closed/wall,/area/hallway/secondary/service)
"aCb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aCc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/table,/obj/item/kitchen/rollingpin{pixel_y = -8; pixel_x = 6},/obj/item/reagent_containers/glass/bucket/wood{pixel_x = -5; pixel_y = -5},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aCd" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aCe" = (/obj/structure/grille/broken,/obj/structure/cable{icon_state = "1-8"},/obj/structure/window{dir = 4},/obj/structure/window,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aCf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/maintenance/starboard/fore)
@@ -1463,7 +1463,7 @@
"aCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/kirbyplants/random,/turf/open/floor/plasteel/dark,/area/service/chapel/main)
"aCw" = (/turf/closed/wall,/area/service/chapel/main)
"aCx" = (/obj/machinery/camera{c_tag = "Arrivals North"; dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry)
"aCy" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary)
"aCy" = (/obj/structure/closet/secure_closet/security,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary)
"aCz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary)
"aCA" = (/obj/machinery/computer/security{pixel_y = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary)
"aCB" = (/obj/machinery/computer/card{pixel_y = 8},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/auxiliary)
@@ -1482,7 +1482,7 @@
"aCO" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/obj/item/multitool,/obj/item/multitool{pixel_x = 4},/turf/open/floor/plasteel/dark,/area/commons/storage/primary)
"aCP" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel/dark,/area/commons/storage/primary)
"aCQ" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel/dark,/area/commons/storage/primary)
"aCR" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"aCR" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = -30},/obj/machinery/vending/boozeomat,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"aCS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/circuit,/area/ai_monitored/command/nuke_storage)
"aCT" = (/turf/open/floor/plasteel/stairs/right{dir = 4},/area/hallway/primary/central)
"aCU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "vault Maintenance"; dir = 1},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
@@ -1493,12 +1493,12 @@
"aCZ" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aDa" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/loading_area{icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aDb" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
"aDc" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDg" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage"; dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDh" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDc" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aDd" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aDe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDg" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light,/obj/machinery/camera{c_tag = "EVA Storage"; dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aDh" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aDi" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/command/storage/eva)
"aDj" = (/obj/machinery/door/airlock/command{name = "Command Tool Storage"; req_access_txt = "19"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aDk" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command{name = "Command Tool Storage"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
@@ -1524,11 +1524,11 @@
"aDE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aDF" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aDG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aDH" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/shovel/spade,/turf/open/floor/plasteel,/area/hallway/secondary/service)
"aDH" = (/obj/structure/rack/shelf,/obj/item/storage/bag/plants,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/shovel/spade,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aDK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/table,/obj/item/ashtray{pixel_x = -6; pixel_y = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"aDL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aDL" = (/obj/machinery/door/firedoor/border_only{dir = 4},/obj/effect/turf_decal/vg_decals/department/sci{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
"aDM" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness)
"aDN" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/vending/kink,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/port/aft)
@@ -1628,13 +1628,13 @@
"aFG" = (/turf/open/floor/plasteel,/area/command/gateway)
"aFH" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/commons/dorms)
"aFI" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
"aFJ" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFJ" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFL" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFN" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFO" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFP" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aFN" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFO" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFP" = (/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "trim"; name = "trim"},/obj/structure/rack/shelf,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aFQ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"aFR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/fore)
"aFS" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/starboard/fore)
@@ -1704,12 +1704,12 @@
"aHe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/command/gateway)
"aHf" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/command/gateway)
"aHg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/command/gateway)
"aHh" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/command/gateway)
"aHh" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aHi" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore)
"aHj" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aHk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aHl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aHm" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aHj" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aHk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aHl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aHm" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aHn" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command{name = "Command Tool Storage"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aHo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "1st Class Lounge"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
"aHp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "1st Class Lounge"},/turf/open/floor/plasteel,/area/hallway/primary/central)
@@ -1782,10 +1782,10 @@
"aIE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/command/gateway)
"aIF" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/command/gateway)
"aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/command/gateway)
"aIH" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/command/gateway)
"aII" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aIK" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"aIH" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/command/gateway)
"aII" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aIK" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aIL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central)
"aIM" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
"aIN" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Central Hallway North"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central)
@@ -2224,7 +2224,7 @@
"aRi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Holodeckshutter"; name = "Holodeck Shutter"},/turf/open/floor/plating,/area/crew_quarters/fitness)
"aRj" = (/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/machinery/camera{c_tag = "Bar East"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/structure/chair/sofa/corp/left,/turf/open/floor/carpet/black,/area/service/bar)
"aRk" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit)
"aRl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"aRl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"aRm" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/central)
"aRn" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/service/kitchen)
"aRo" = (/obj/effect/landmark/start/cook,/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/cafeteria,/area/service/kitchen)
@@ -2525,6 +2525,7 @@
"aXt" = (/obj/structure/chair/bench/left{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna)
"aXu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna)
"aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/sauna)
"aXw" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/rack/shelf,/obj/item/mop,/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"aXy" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"aXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/catwalk_floor,/area/maintenance/port)
"aXA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/cargo/warehouse)
@@ -2626,7 +2627,7 @@
"aZy" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel/dark,/area/cargo/qm)
"aZz" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"aZA" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload)
"aZB" = (/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"aZB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"aZC" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"aZD" = (/turf/closed/wall/r_wall,/area/command/heads_quarters/captain)
"aZE" = (/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/command/heads_quarters/captain)
@@ -2738,7 +2739,7 @@
"bbK" = (/obj/structure/table,/obj/item/ai_module/supplied/quarantine,/obj/machinery/camera/motion{dir = 4; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"bbL" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"bbM" = (/obj/structure/table,/obj/item/ai_module/supplied/freeform,/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/machinery/camera/motion{dir = 8; network = list("aiupload")},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"bbN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bbN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = -28},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bbO" = (/obj/structure/displaycase/captain,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bbP" = (/obj/machinery/vending/wardrobe/cap_wardrobe,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bbQ" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
@@ -2790,7 +2791,7 @@
"bcL" = (/obj/item/hand_labeler,/obj/item/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/command/meeting_room)
"bcM" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/command/meeting_room)
"bcN" = (/obj/structure/table/wood,/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"},/turf/open/floor/carpet,/area/command/meeting_room)
"bcO" = (/obj/item/book/manual/wiki/security_space_law,/obj/structure/table/wood,/turf/open/floor/carpet,/area/command/meeting_room)
"bcO" = (/obj/structure/table/wood,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/carpet,/area/command/meeting_room)
"bcP" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/command/meeting_room)
"bcQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/command/meeting_room)
"bcR" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/command/meeting_room)
@@ -2848,11 +2849,11 @@
"bdR" = (/obj/structure/table,/obj/item/ai_module/supplied/oxygen,/obj/item/ai_module/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/ai_module/reset/purge,/obj/structure/window/reinforced,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/ai_module/supplied/protectStation,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload)
"bdS" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/storage/lockbox/medal,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
"bdU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bdU" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bdV" = (/obj/structure/table/wood,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bdW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bdX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bdY" = (/obj/structure/table/wood,/obj/item/hand_tele,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bdX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bdY" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/stamp/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bdZ" = (/obj/machinery/light{dir = 4},/turf/open/floor/carpet/red,/area/service/bar)
"bea" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Stbd"; location = "HOP"},/turf/open/floor/plasteel,/area/hallway/primary/central)
"beb" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison)
@@ -2919,7 +2920,7 @@
"bfl" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
"bfm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
"bfn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
"bfo" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bfo" = (/obj/effect/turf_decal/vg_decals/atmos/plasma,/turf/open/floor/engine/plasma,/area/engineering/atmos)
"bfp" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/obj/item/storage/secure/safe{pixel_x = 35; pixel_y = 5},/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bfq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
"bfr" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/stairs{dir = 4},/area/maintenance/central/secondary)
@@ -2994,8 +2995,8 @@
"bgL" = (/turf/open/floor/plasteel/dark,/area/engineering/gravity_generator)
"bgM" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "trim"; name = "trim"},/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/dark,/area/engineering/gravity_generator)
"bgN" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/item/camera,/obj/item/storage/photo_album{pixel_y = -10},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bgO" = (/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"; pixel_x = -28},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bgP" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bgO" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"bgP" = (/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "trim"; name = "trim"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"bgQ" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/melee/chainofcommand,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bgR" = (/turf/open/floor/plasteel/white,/area/science/lab)
"bgS" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/lab)
@@ -3015,7 +3016,7 @@
"bhg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
"bhh" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/flashlight/lamp/green{on = 0; pixel_x = -3; pixel_y = 8},/obj/item/pen/fountain,/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos)
"bhi" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/command/heads_quarters/hos)
"bhj" = (/obj/item/book/manual/wiki/security_space_law,/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/command/heads_quarters/hos)
"bhj" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/carpet,/area/command/heads_quarters/hos)
"bhk" = (/turf/open/floor/carpet,/area/command/heads_quarters/hos)
"bhl" = (/obj/machinery/light{dir = 4},/obj/machinery/suit_storage_unit/hos,/obj/effect/turf_decal/delivery,/obj/machinery/status_display/ai{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos)
"bhm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos)
@@ -3059,13 +3060,13 @@
"bhY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/big_gato,/turf/open/floor/plasteel,/area/security/office)
"bhZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/office)
"bia" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore/secondary)
"bib" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/range)
"bib" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/range)
"bic" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/table,/obj/item/gun/energy/laser/practice,/obj/machinery/syndicatebomb/training,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"bid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/office)
"bie" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"bif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"big" = (/obj/effect/landmark/start/security_officer,/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/office)
"bih" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/office)
"bih" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel,/area/security/office)
"bii" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "Prison Gate"; name = "Prison Lockdown Shutters"},/turf/open/floor/plating,/area/security/prison/upper)
"bij" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/office)
"bik" = (/obj/structure/closet/crate/bin,/obj/effect/spawner/lootdrop/prison_contraband,/obj/item/trash/sosjerky,/obj/item/trash/boritos,/obj/item/trash/can,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -27; pixel_y = -27; prison_radio = 1},/turf/open/floor/plasteel,/area/security/prison/upper)
@@ -3133,12 +3134,12 @@
"bjv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
"bjw" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness)
"bjx" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjy" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjz" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/camera{c_tag = "Pool South"; dir = 1; name = "arrivals camera"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjy" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjz" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/camera{c_tag = "Pool South"; dir = 1; name = "arrivals camera"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjE" = (/obj/machinery/light,/obj/structure/bed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"bjF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness)
"bjG" = (/obj/structure/closet/crate{name = "Asshole Containment"},/obj/item/banhammer,/turf/open/floor/plating,/area/maintenance/starboard/fore)
@@ -3211,7 +3212,7 @@
"bkV" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/primary/central)
"bkW" = (/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/primary/central)
"bkX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/beanbag/gato,/turf/open/floor/carpet/gato,/area/commons/dorms)
"bkY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit)
"bkY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel,/area/hallway/secondary/exit)
"bkZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/port)
"bla" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/port)
"blb" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
@@ -3517,8 +3518,8 @@
"bre" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Vault Maintenance"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/command/meeting_room)
"brf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/stairs{dir = 8},/area/maintenance/central/secondary)
"brg" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Vault Maintenance"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/command/heads_quarters/captain)
"brh" = (/obj/machinery/computer/communications{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bri" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "4-8"},/obj/item/book/manual/gato_spacelaw,/obj/item/coin/plasma,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"brh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bri" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/computer/communications{dir = 8},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"brj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"brk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central)
"brl" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel/white,/area/medical/chemistry)
@@ -3668,7 +3669,7 @@
"bua" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/nuke_storage)
"bub" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/command/nuke_storage)
"buc" = (/obj/machinery/power/apc{areastring = "/area/ai_monitored/nuke_storage"; dir = 1; name = "Vault APC"; pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/circuit,/area/ai_monitored/command/nuke_storage)
"bud" = (/obj/machinery/newscaster/security_unit{pixel_x = -32},/obj/machinery/keycard_auth{pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bud" = (/obj/machinery/newscaster/security_unit{pixel_x = -32},/obj/machinery/keycard_auth{pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/suit_storage_unit/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bue" = (/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Captain's Desk Door"; req_access_txt = "20"},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"buf" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bug" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/open/floor/wood,/area/command/heads_quarters/captain)
@@ -3816,10 +3817,10 @@
"bwS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/command/heads_quarters/hop)
"bwT" = (/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/command/heads_quarters/hop)
"bwU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/circuit,/area/ai_monitored/command/nuke_storage)
"bwV" = (/obj/machinery/light/small{dir = 1},/obj/structure/dresser,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/card/id/captains_spare,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bwW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bwX" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bwY" = (/obj/machinery/door/airlock{dir = 4; name = "Private Restroom"},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"bwV" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bwW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bwX" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bwY" = (/obj/machinery/door/airlock{dir = 4; name = "Private Restroom"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals10"},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"bwZ" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"bxa" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs,/area/maintenance/central/secondary)
"bxb" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central)
@@ -3892,8 +3893,8 @@
"byq" = (/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/nuke_storage)
"byr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/nuke_storage)
"bys" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/nuke_storage)
"byt" = (/obj/structure/bed,/obj/item/bedsheet/captain,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"byu" = (/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"byt" = (/obj/item/stack/sheet/mineral/wood/twenty{pixel_x = 6; pixel_y = 7},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"byu" = (/obj/structure/toilet{dir = 8},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"byv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central/secondary"; dir = 8; name = "Central Maintenance APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
"byw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central)
"byx" = (/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/screwdriver{pixel_x = -2; pixel_y = 6},/obj/machinery/light{dir = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/white,/area/medical/chemistry)
@@ -3946,7 +3947,7 @@
"bzs" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
"bzt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
"bzu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
"bzv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central)
"bzv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/vg_decals/department/hop{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central)
"bzw" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 8; name = "Reception Window"},/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 4; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/flasher{id = "hopflash"; pixel_y = 28},/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/turf/open/floor/plasteel,/area/command/heads_quarters/hop)
"bzx" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/command/heads_quarters/hop)
"bzy" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/hop)
@@ -3956,10 +3957,10 @@
"bzC" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/command/heads_quarters/hop)
"bzD" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/command/nuke_storage)
"bzE" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/command/nuke_storage)
"bzF" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bzG" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bzH" = (/obj/structure/table/wood,/obj/item/storage/box/matches,/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bzI" = (/obj/machinery/shower{dir = 1},/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/structure/curtain,/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"bzF" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"bzG" = (/obj/machinery/camera{c_tag = "Captain's Quarters"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bzH" = (/obj/structure/dresser,/obj/item/card/id/captains_spare,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"bzI" = (/obj/machinery/shower{dir = 1},/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/structure/curtain,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/command/heads_quarters/captain)
"bzJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary)
"bzK" = (/obj/structure/closet/wardrobe/chemistry_white,/obj/machinery/light_switch{pixel_x = -23},/turf/open/floor/plasteel/white,/area/medical/chemistry)
"bzL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table,/obj/item/book/manual/wiki/chemistry,/obj/item/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/turf/open/floor/plasteel/white,/area/medical/chemistry)
@@ -4473,7 +4474,7 @@
"bJG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/cargo/miningdock)
"bJH" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/cargo/miningdock)
"bJI" = (/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen,/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply)
"bJJ" = (/obj/item/book/manual/wiki/security_space_law,/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply)
"bJJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply)
"bJK" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply)
"bJL" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply)
"bJM" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
@@ -4581,7 +4582,7 @@
"bLK" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science)
"bLL" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science)
"bLM" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science)
"bLN" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science)
"bLN" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/security/checkpoint/science)
"bLO" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/research)
"bLP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 9},/area/science/research)
"bLQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/command{dir = 4; name = "Research Director"; req_access_txt = "30"},/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/rd)
@@ -5998,7 +5999,7 @@
"cnj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/engineering/break_room)
"cnk" = (/turf/open/floor/plasteel,/area/engineering/break_room)
"cnl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"cnm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"cnm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/table/wood,/obj/item/book/manual/gato_spacelaw,/obj/item/coin/plasma,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"cnn" = (/obj/machinery/power/apc{areastring = "/area/engine/atmos"; dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engineering/atmos)
"cno" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engineering/atmos)
"cnp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/item/wrench,/turf/open/floor/plasteel,/area/engineering/atmos)
@@ -6770,9 +6771,9 @@
"cCh" = (/turf/open/floor/plasteel,/area/engineering/main)
"cCi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engineering/main)
"cCj" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engineering/main)
"cCk" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engineering/atmos)
"cCl" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engineering/atmos)
"cCm" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engineering/atmos)
"cCk" = (/obj/machinery/light/small,/obj/effect/turf_decal/vg_decals/atmos/nitrogen,/turf/open/floor/engine/n2,/area/engineering/atmos)
"cCl" = (/obj/machinery/light/small,/obj/effect/turf_decal/vg_decals/atmos/oxygen,/turf/open/floor/engine/o2,/area/engineering/atmos)
"cCm" = (/obj/machinery/light/small,/obj/effect/turf_decal/vg_decals/atmos/air,/turf/open/floor/engine/air,/area/engineering/atmos)
"cCn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/space,/area/space/nearstation)
"cCo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/space,/area/space/nearstation)
"cCp" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/binary/pump/on{name = "Incinerator Output Pump"},/turf/open/space,/area/maintenance/disposal/incinerator)
@@ -7195,10 +7196,12 @@
"dlh" = (/obj/structure/chair/beanbag/red{dir = 1},/turf/open/floor/wood,/area/maintenance/bar)
"dqN" = (/obj/structure/chair/beanbag/purple{dir = 8},/turf/open/floor/carpet/black,/area/hallway/primary/central)
"dqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/security/prison/upper)
"drR" = (/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "trim"; name = "trim"},/obj/structure/rack/shelf,/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"dtz" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"duz" = (/obj/structure/fans/tiny,/obj/machinery/door/airlock/public{name = "Small Sauna #2 Bolts"; id_tag = "small_sauna_2"},/turf/open/floor/wood,/area/crew_quarters/fitness/sauna)
"dyr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/engineering/main)
"dCp" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/security/courtroom)
"dDd" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"dDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/brig)
"dFf" = (/obj/structure/chair/sofa/left{dir = 1},/turf/open/floor/wood,/area/maintenance/port/fore)
"dFG" = (/obj/structure/bodycontainer/morgue,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/bot,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig)
@@ -7208,16 +7211,19 @@
"dIz" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna)
"dIT" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/prison/upper)
"dNj" = (/obj/structure/sign/warning/pods{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/office)
"dNE" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"dOe" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/commons/vacant_room/office)
"dOy" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper)
"dOD" = (/obj/structure/fireplace{dir = 4; pixel_x = -8; pixel_y = 10},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"dTp" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison)
"dUO" = (/obj/structure/flora/rock/pile,/turf/open/water/jungle,/area/security/courtroom)
"dVa" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/security/range)
"eem" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/prison/starboard)
"efG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/fore)
"elT" = (/obj/machinery/light/small,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/showroomfloor,/area/maintenance/port/fore)
"end" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/prison/upper)
"enw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/prison)
"epB" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plating,/area/security/range)
"epB" = (/obj/structure/target_stake,/obj/item/target/syndicate,/obj/machinery/magnetic_module,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals_central4"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel,/area/security/range)
"evK" = (/obj/structure/lattice/catwalk,/obj/item/stack/marker_beacon{anchored = 1; icon_state = "markerburgundy-on"; light_color = "#FA644B"; light_power = 3; light_range = 2; name = "landing marker"; picked_color = "Burgundy"},/turf/open/space/basic,/area/space/nearstation)
"eDW" = (/obj/structure/lattice,/obj/item/stack/marker_beacon{anchored = 1; icon_state = "markerburgundy-on"; light_color = "#FA644B"; light_power = 3; light_range = 2; name = "landing marker"; picked_color = "Burgundy"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation)
"eEE" = (/obj/machinery/door/window/southleft{name = "Permabrig Kitchen"},/turf/open/floor/plasteel/white,/area/security/prison/upper)
@@ -7255,9 +7261,11 @@
"fSf" = (/obj/machinery/hydroponics/soil,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison/upper)
"fTL" = (/obj/structure/table,/obj/item/electropack,/obj/item/screwdriver,/obj/item/wrench,/obj/item/clothing/head/helmet,/obj/item/assembly/signaler,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light_switch{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"fTV" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -27; pixel_y = -27; prison_radio = 1},/obj/machinery/flasher{id = "Cell 2"; pixel_x = -24; pixel_y = -36},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/bed,/obj/item/bedsheet/blue,/turf/open/floor/plasteel,/area/security/brig)
"fUc" = (/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engineering/atmos)
"fWD" = (/obj/structure/chair/sofa/corp/right{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central)
"fXI" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/plasteel,/area/security/prison/upper)
"fYR" = (/obj/docking_port/stationary/random{dir = 4; shuttle_id = "pod_lavaland3"; name = "lavaland"},/turf/open/space,/area/space)
"fZl" = (/obj/structure/table,/obj/item/ashtray{pixel_x = -6; pixel_y = -3},/obj/item/storage/fancy/rollingpapers{pixel_x = 4; pixel_y = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"gbo" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"gcb" = (/obj/structure/closet/secure_closet/warden,/obj/structure/sign/poster/official/ion_rifle{pixel_y = 32},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/obj/item/radio/intercom{pixel_x = 32; pixel_y = 20},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
"gdC" = (/obj/structure/sign/warning/securearea{pixel_y = -32},/turf/open/space/basic,/area/space)
@@ -7268,6 +7276,7 @@
"ghG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/prison/cells)
"giC" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/prison/upper)
"gkf" = (/obj/effect/turf_decal/bot_white,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/prison/port)
"gpL" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = -2; pixel_y = -2},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"guH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison/cells)
"gwd" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/port/aft)
"gwA" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light,/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/primary/starboard)
@@ -7285,8 +7294,8 @@
"gSa" = (/obj/structure/flora/tree/jungle,/turf/open/floor/grass,/area/hallway/secondary/exit)
"gSp" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/old,/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plating,/area/security/prison/upper)
"gWm" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/starboard/aft)
"gWD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
"gYU" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"gWD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/brig)
"gYU" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
"hat" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/cargo/miningdock)
"haM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig)
"haV" = (/obj/structure/chair/bench/right{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna)
@@ -7301,6 +7310,8 @@
"hjp" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical)
"hkr" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/catwalk_floor,/area/maintenance/fore/secondary)
"hmo" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison/upper)
"hmE" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes/cigars/cohiba{pixel_x = -3; pixel_y = -6},/obj/item/lighter{pixel_x = -7; pixel_y = 4},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"hnf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/caution/stand_clear,/turf/open/floor/plasteel,/area/hallway/primary/fore)
"hoZ" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/medical/medbay/central)
"hqI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
"hrc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna)
@@ -7313,12 +7324,14 @@
"hzo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/sauna)
"hzA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/sauna)
"hAV" = (/obj/effect/landmark/carpspawn,/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
"hEF" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/security/range)
"hBV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/security/brig)
"hEF" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/security/range)
"hHH" = (/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"hIs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/computer/security/labor{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing)
"hIG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/cargo/warehouse)
"hJh" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells)
"hLR" = (/obj/effect/spawner/lootdrop/fiftypercent_chocoslimespawn,/turf/open/floor/engine,/area/science/xenobiology)
"hLZ" = (/obj/structure/chair/sofa/left/old{dir = 8},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_y = 8},/turf/open/floor/wood,/area/command/heads_quarters/captain)
"hMT" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/ai_monitored/security/armory)
"hPx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna)
"hPT" = (/obj/structure/closet/secure_closet/injection,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/machinery/power/apc{areastring = "/area/security/execution/transfer"; dir = 1; name = "Prisoner Transfer Centre"; pixel_y = 23},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
@@ -7345,6 +7358,7 @@
"iPS" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer,/turf/open/floor/plasteel,/area/security/prison)
"iTK" = (/obj/structure/chair{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/brig)
"iWg" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation)
"iWl" = (/obj/machinery/computer/card{dir = 8},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"iXA" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{pixel_y = 19},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna)
"iXJ" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical)
"jaW" = (/obj/structure/table,/obj/item/electropack,/obj/item/healthanalyzer,/obj/item/assembly/signaler,/turf/open/floor/plasteel,/area/science/misc_lab)
@@ -7352,7 +7366,7 @@
"jdj" = (/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals8"},/turf/open/floor/plasteel,/area/cargo/office)
"jek" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/starboard/fore)
"jil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/port/fore)
"jjH" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/security/range)
"jjH" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/security/range)
"jjZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/prison/upper)
"jko" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"jkM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/starboard)
@@ -7365,6 +7379,7 @@
"jtZ" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/sauna)
"juX" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"jvI" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/carpet/gato,/area/commons/dorms)
"jwN" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig)
"jxw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"jxX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/fore/secondary)
"jyS" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness)
@@ -7379,18 +7394,21 @@
"jMf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/science/misc_lab)
"jNL" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/sauna)
"jOs" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/processing)
"jQF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/catwalk_floor,/area/maintenance/starboard/fore)
"jTS" = (/turf/open/floor/plasteel/dark/corner{dir = 1},/area/crew_quarters/fitness/sauna)
"jUz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/starboard/aft)
"jWb" = (/obj/effect/turf_decal/stripes/white/line{dir = 9},/turf/open/floor/plasteel,/area/security/prison/upper)
"jWn" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced/tinted/electrochromatic{electrochromatic_id = "!permabrigshowers"},/turf/open/floor/plating,/area/security/prison/cells)
"jXj" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"jXj" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"jXK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/prison/upper)
"jXN" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet/red,/area/maintenance/bar)
"kar" = (/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/sauna)
"kaY" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/security/prison/upper)
"kcI" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central6"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"kgC" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer)
"khQ" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna)
"kjZ" = (/obj/machinery/vending/sustenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
"kkq" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"knw" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/meatballspaghetti{pixel_y = 7; pixel_x = -3},/obj/item/ashtray{name = "candle holder"; pixel_x = 10},/obj/item/candle{pixel_x = 10; pixel_y = 5},/turf/open/floor/wood,/area/maintenance/port/fore)
"kvF" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/prison/upper)
"kxa" = (/obj/machinery/door/airlock/security/glass{id_tag = "permaouter"; name = "Permabrig Transfer"; req_access_txt = "2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/prison)
@@ -7401,6 +7419,7 @@
"kEX" = (/obj/effect/landmark/secequipment,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/office)
"kJi" = (/obj/structure/table/wood,/obj/item/book/manual/blubbery_bartender,/turf/open/floor/carpet/red,/area/maintenance/bar)
"kJj" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/port/aft)
"kKb" = (/obj/structure/chair/beanbag/green{dir = 8; pixel_x = 2; pixel_y = -2},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 1; name = "Service Hall APC"; pixel_y = 25},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"kMu" = (/obj/effect/turf_decal/stripes/white/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison/upper)
"kOh" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 6},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = -2},/obj/item/reagent_containers/food/drinks/bottle/champagne,/turf/open/floor/carpet,/area/hallway/secondary/exit)
"kSb" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office)
@@ -7427,11 +7446,12 @@
"lwT" = (/obj/machinery/door/airlock/maintenance/abandoned{dir = 4; req_access_txt = "12"},/turf/open/floor/plasteel/showroomfloor,/area/maintenance/port/fore)
"lyO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/portable_atmospherics/canister/water_vapor,/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/sauna)
"lzb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/grass,/area/security/courtroom)
"lze" = (/obj/structure/bed,/obj/item/bedsheet/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"lAq" = (/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna)
"lFu" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"lHk" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space,/area/space/nearstation)
"lJO" = (/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel/dark,/area/service/chapel/main)
"lOJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/security/range)
"lOJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/security/range)
"lPg" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/prison/upper)
"lQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/security/courtroom)
"lQq" = (/obj/machinery/door/airlock/public/glass{name = "Fitness"; dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness)
@@ -7451,10 +7471,10 @@
"mqk" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
"mrk" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison/cells)
"mtg" = (/obj/effect/decal/cleanable/dirt,/obj/item/toy/plush/random,/obj/structure/light_construct,/turf/open/floor/carpet,/area/maintenance/starboard/fore)
"mwe" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/security/range)
"mwe" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel,/area/security/range)
"mBk" = (/obj/machinery/light/small{dir = 1},/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/commons/storage/emergency/starboard)
"mCh" = (/obj/machinery/camera{c_tag = "Arrivals Bay 2"; dir = 8},/obj/structure/railing,/obj/vehicle/ridden/grocery_cart{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry)
"mCQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/range)
"mCQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/range)
"mDn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"mFf" = (/obj/machinery/camera{c_tag = "Prison Cell Block North"; dir = 4; network = list("ss13","prison")},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells)
"mIM" = (/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay/central)
@@ -7473,6 +7493,7 @@
"mTU" = (/turf/open/space/basic,/area/space/nearstation)
"mUP" = (/obj/structure/table/wood,/obj/item/trash/raisins,/turf/open/floor/carpet/red,/area/maintenance/bar)
"mVv" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"mVz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
"mWT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
"naR" = (/obj/structure/flora/junglebush/large,/turf/open/water/jungle,/area/security/courtroom)
"nbd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port)
@@ -7493,7 +7514,7 @@
"nzp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/wood,/area/commons/vacant_room/office)
"nEK" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/upper)
"nEU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper)
"nFt" = (/turf/open/floor/plating,/area/security/range)
"nFt" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/range)
"nGb" = (/obj/machinery/door/airlock/grunge,/turf/open/floor/wood,/area/commons/vacant_room/office)
"nGL" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells)
"nJV" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "maintkitchenshutters"; name = "kitchen shutters"},/obj/item/reagent_containers/food/drinks/bigbottle/cola,/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore)
@@ -7505,6 +7526,7 @@
"nWV" = (/obj/machinery/treadmill,/turf/open/floor/wood,/area/crew_quarters/fitness)
"oaM" = (/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical)
"ocs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "permacells4"; name = "Privacy Shutters"},/turf/open/floor/plating,/area/security/prison/cells)
"oda" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/security/range)
"ofu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/security/brig)
"ogA" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/brig)
"ont" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{pixel_y = 20},/turf/open/floor/plasteel,/area/security/brig)
@@ -7515,7 +7537,7 @@
"orG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/cells)
"otM" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
"ovQ" = (/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/port/fore)
"owr" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"owr" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva)
"ozb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/security/processing)
"ozR" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood,/area/service/library)
"oDn" = (/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/sauna)
@@ -7537,6 +7559,7 @@
"pqk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory)
"ptj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper)
"puS" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"pwP" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/vg_decals/department/sci{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
"pAd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/prison/starboard)
"pDu" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig)
"pFC" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation)
@@ -7550,6 +7573,7 @@
"pVv" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/carpet,/area/hallway/secondary/exit)
"pYb" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna)
"pYc" = (/obj/machinery/computer/piratepad_control/civilian{dir = 1},/turf/open/floor/plasteel,/area/cargo/office)
"qcI" = (/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,/turf/open/floor/engine/co2,/area/engineering/atmos)
"qlv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/prison/upper)
"qmg" = (/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 2},/obj/item/reagent_containers/glass/beaker/large,/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore)
"qnB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 4},/area/crew_quarters/fitness/sauna)
@@ -7590,6 +7614,8 @@
"rAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/security/prison/cells)
"rCl" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office)
"rCT" = (/obj/structure/table/wood,/obj/item/trash/candy,/turf/open/floor/wood,/area/maintenance/bar)
"rCW" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva)
"rDk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/flask/gold{pixel_x = -3},/obj/item/razor{pixel_y = 2; pixel_x = 8},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"rDZ" = (/obj/structure/chair/sofa/right,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/prison/upper)
"rFa" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central)
"rFu" = (/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel/dark,/area/service/chapel/main)
@@ -7604,7 +7630,7 @@
"rWb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/catwalk_floor,/area/maintenance/starboard/aft)
"rWj" = (/obj/machinery/computer/security/telescreen/entertainment,/turf/closed/wall,/area/crew_quarters/fitness/sauna)
"rWE" = (/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness)
"rZe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/radio/intercom{pixel_y = 20},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/security/processing)
"rZe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/radio/intercom{pixel_y = 20},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/security/processing)
"sbO" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/carpet,/area/cargo/miningdock)
"sem" = (/obj/structure/railing{dir = 1},/obj/structure/chair/bench/left,/turf/open/indestructible/hotelwood,/area/security/courtroom)
"sky" = (/obj/structure/table,/obj/item/stamp,/turf/open/floor/plating,/area/maintenance/port/fore)
@@ -7615,7 +7641,9 @@
"swT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"syv" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna)
"syH" = (/obj/machinery/computer/arcade/battle,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper)
"szh" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals5"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/security/range)
"sCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison/upper)
"sDV" = (/obj/item/cigbutt/roach{pixel_x = -10; pixel_y = 15},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"sFH" = (/obj/structure/dresser,/obj/item/flashlight/lamp{pixel_y = 13; pixel_x = -5},/turf/open/floor/carpet,/area/maintenance/starboard/fore)
"sGR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/starboard/fore)
"sIo" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stack/cable_coil,/obj/item/multitool,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/science/misc_lab)
@@ -7623,6 +7651,7 @@
"sLh" = (/obj/machinery/computer/cryopod{pixel_y = 26},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel/dark,/area/security/prison/cells)
"sMl" = (/obj/machinery/iv_drip/feeding_tube,/turf/open/floor/plating,/area/maintenance/starboard/fore)
"sMN" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry)
"sOt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"sPW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "permacells2"; name = "Privacy Shutters"},/turf/open/floor/plating,/area/security/prison/cells)
"sTI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"sTU" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells)
@@ -7641,6 +7670,7 @@
"tlH" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/office)
"tlQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Permabrig Maintenance"; req_access_txt = "1"; dir = 8},/turf/open/floor/plating,/area/maintenance/prison/port)
"tlT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/prison/upper)
"tmh" = (/obj/structure/chair/beanbag/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service)
"tmt" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/paramedic)
"tnQ" = (/obj/machinery/microwave,/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore)
"toG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/prison/upper)
@@ -7656,7 +7686,7 @@
"tDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/engineering/break_room)
"tDX" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison/upper)
"tFJ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison/cells)
"tGc" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
"tGc" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/security/brig)
"tIp" = (/obj/structure/window/reinforced/tinted{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison/upper)
"tIr" = (/obj/structure/chair/bench/right{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/sink{dir = 8; pixel_x = -12},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna)
"tRy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/clothing,/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/sauna)
@@ -7681,9 +7711,11 @@
"uHU" = (/obj/effect/turf_decal/tile/bar{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel/dark,/area/service/chapel/main)
"uKC" = (/obj/structure/closet/crate/hydroponics,/obj/item/paper/guides/jobs/hydroponics,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/item/seeds/onion,/obj/item/seeds/garlic,/obj/item/seeds/potato,/obj/item/seeds/tomato,/obj/item/seeds/carrot,/obj/item/seeds/grass,/obj/item/seeds/ambrosia,/obj/item/seeds/wheat,/obj/item/seeds/pumpkin,/obj/effect/spawner/lootdrop/prison_contraband,/turf/open/floor/plasteel,/area/security/prison/upper)
"uKS" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/command/bridge)
"uLB" = (/obj/structure/chair/sofa/right/old{dir = 8},/obj/item/reagent_containers/food/drinks/bottle/whiskey,/turf/open/floor/wood,/area/command/heads_quarters/captain)
"uMn" = (/obj/structure/trash_pile,/obj/item/borg/upgrade/feeding_arm,/turf/open/floor/plating,/area/maintenance/port/fore)
"uNx" = (/obj/machinery/hydroponics/constructable,/obj/structure/sign/poster/official/hydro_ad{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/service/hydroponics)
"uNY" = (/obj/machinery/door/airlock{name = "Break Room"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/misc_lab)
"uOW" = (/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"uOW" = (/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore)
"uQv" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/crew_quarters/fitness/sauna)
"uRX" = (/obj/machinery/button/door{id = "RBreakPriv"; name = "Privacy Shutters"; pixel_y = -25},/turf/open/floor/carpet,/area/science/misc_lab)
"uRY" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Prison Laundry"; dir = 4; network = list("ss13","prison")},/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper)
@@ -7705,7 +7737,7 @@
"vtI" = (/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
"vtY" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/prison_contraband,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/prison/starboard)
"vup" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/blood/old,/obj/machinery/button/electrochromatic{id = "!permabrigshowers"; pixel_x = -25},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/security/prison/cells)
"vvu" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/range)
"vvu" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/range)
"vzb" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/hallway/primary/central)
"vzn" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{areastring = "/area/security/courtroom"; dir = 8; name = "Park"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary)
"vAf" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "visitorflash"; pixel_x = 16; pixel_y = 24},/turf/open/floor/plasteel,/area/security/prison/upper)
@@ -7719,7 +7751,7 @@
"vKw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/security/checkpoint/medical)
"vQx" = (/obj/effect/turf_decal/trimline/blue/filled/line{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/medical/paramedic)
"vQH" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/pizza/meat,/obj/item/ashtray{pixel_x = 9},/turf/open/floor/carpet,/area/science/misc_lab)
"vTv" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/power/apc{areastring = "/area/security/range"; dir = 4; name = "Firing Range APC"; pixel_x = 24},/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/security/range)
"vTv" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/machinery/power/apc{areastring = "/area/security/range"; dir = 4; name = "Firing Range APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/range)
"vUL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/security/prison/cells)
"vXp" = (/obj/effect/turf_decal/stripes/white/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison/upper)
"vXw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/range)
@@ -7742,6 +7774,7 @@
"wzc" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig)
"wCK" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation)
"wFi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/cells)
"wFF" = (/obj/structure/table/wood,/obj/machinery/computer/secure_data/laptop{dir = 1},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"wFZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
"wHd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/aft)
"wJU" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/bed,/obj/item/bedsheet/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison/cells)
@@ -7749,6 +7782,8 @@
"wKs" = (/obj/machinery/vr_sleeper{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/upper)
"wLJ" = (/obj/structure/table,/obj/item/storage/fancy/egg_box,/obj/item/reagent_containers/food/condiment/flour,/obj/item/reagent_containers/food/condiment/rice,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/white,/area/security/prison/upper)
"wNZ" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/security/office)
"wPP" = (/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"wQe" = (/obj/structure/table/wood,/obj/item/hand_tele,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain)
"wUa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/security/brig)
"wXU" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore)
"xbI" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
@@ -7773,8 +7808,8 @@
"xDk" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison/upper)
"xDA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable,/obj/machinery/door/poddoor/shutters/preopen{id = "Prison Gate"; name = "Prison Lockdown Shutters"},/turf/open/floor/plating,/area/security/brig)
"xDV" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/security/prison/upper)
"xGQ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/recharger,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/security/range)
"xHd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/range)
"xGQ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/recharger,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/security/range)
"xHd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/range)
"xHn" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/security/prison/upper)
"xHv" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/command/bridge)
"xIJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry)
@@ -7787,8 +7822,9 @@
"xWo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna)
"xXb" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/security/brig)
"xXQ" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/execution/transfer)
"xYD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/starboard/fore)
"xZr" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/maintenance/port/fore)
"ybu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/range)
"ybu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/range)
"ycp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{id = "observation"; id_tag = "observation"},/turf/open/floor/plasteel/grimy,/area/maintenance/starboard/aft)
"ydt" = (/obj/structure/sign/nanotrasen,/turf/closed/wall,/area/hallway/secondary/exit)
"yeh" = (/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/item/reagent_containers/glass/bottle/ammonia,/obj/structure/sink{dir = 4; pixel_x = 12},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison/upper)
@@ -7876,18 +7912,18 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaaaaaaaadaaaaaaaaaadkaaaaaaaaaaadaaaaaaaaaaaYaaaaaaaaaaaaaaaaaaaaaaaaaaaafwkgCxtWamWpuSafWadcafaaeEaeEaeFaeGaeHaeGaeJaasaeNafTaasaeNafzgyvafzahuafzagdafEafFaiUaemafpaaXaeUadEaeWbhzaeYaaXafMablbhBafOabkbhIbhEaffbhGbiBagtaffdtzmVvagvafmagwafoaaaaaaaaafYRaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaaaaQaaaaaaaadaaaaadaaaaaaadPaaaaaaaadaaaaadaaaaaaaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadacIacIacIacIacIaaaadkaaaacIacIacIacIacIaadaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaafwafwafwoqGcTharVuATafaabQabQabQaftafuafvabQafxaewafDbhJafAafBagdafDxDAafBagdskFagMaiUabdafpafGafHafIafJoGlagobirtlHbhKbhLacckSbhHHafQafRbhObhZabnafVrCldNjagdafYacGaawaaaaaaaaaaaaanHbhratJamtatJaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaadaadaadaadadPaadaadaadaadaadaaQaaQaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaadhadiadiadiadiadjadkadladmadmadmadmadnaaaaaQaaaaaaaaaaaaaaaaaaaaaaaaaaabiGbiGafwafwtjjagXamoafaahPakxabQabQabQabQabQwkIaewagcjHJuWfvlMagdsVHogApNoagdagHagfjLUaghagiagjagkaglafJagnagobiLbhRafRbhSagUafRbhVaguafRbhYbhZamFafVagxabkabkacGacGacGabkatJatJbhPbhQbhraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaadaaaakRaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQacfadTadTadTadTadTaaaadkaaaadTadTadTadTadTaadaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpxXQrVMatzafajjHakbakbakbmwexGQaeVahBaewagzagAagBsruaiqagDaldagFagGafSagIvaTagKagLaaXagNaglagOpqkagPaaXbicafRbidbiebifbigbihagWbijbhTahzahaahbahcahdbiaahfaaaaaaatJaaaatJaaaaaaaaaaaaaadaadaaeaadaaeaadaadaaeaadaaeaaeaaeaadaaeaadaceaadaaeaadaadaaeaadaadaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaaaaaaaadaaaaaaaaaadkaaaaaaaaaaadaaaaaaaaaaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpabNabOabPafabibepBnFtnFtafimCQxHdvTvaewdFGahhahiagCaiqahjahkaldahmxrVqxraiUahnahoaaXahpahqahrahsahtaaXahvahwbilbimbinbiobipahAbiqahCahDahEbisabkaiDahHahfahfahfatJatJatJaaaaaaaaaaaaaaaaaaaaeaaaaaeaaaaaaaaeaaaaaeaaeaaeaaaaaeaaaaceaaaaaeaaaaaaaaeaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadacIacIacIacIacIaaaadkaaaacIacIacIacIacIaadaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpajQansacgafahEFvvuvvuvvulOJabEybuagaaewahgahImKVahJagdahKaldaldahMafdwFZagJahNahOaaXahQahRahSahTafKaaXabkahXabkabkabkbiwbixbiyuqDaibbizaihaiiixTjxXhkrailagmahfatJaaaatJatJatJatJatJaadaadaaeaadaaeaadaadaaeaadaaeaaeaaeaadaaeaadaceaadaaeaadaadaaeaadaadaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQacfadTadTadTadTadTaaaadkaaaadTadTadTadTadTaadaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpxXQrVMatzafajjHdVaakbakbmwexGQaeVahBaewagzagAagBsruaiqagDaldagFagGafSagIvaTagKagLaaXagNaglagOpqkagPaaXbicafRbidbiebifbigbihagWbijbhTahzahaahbahcahdbiaahfaaaaaaatJaaaatJaaaaaaaaaaaaaadaadaaeaadaaeaadaadaaeaadaaeaaeaaeaadaaeaadaceaadaaeaadaadaaeaadaadaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaaaaaaaadaaaaaaaaaadkaaaaaaaaaaadaaaaaaaaaaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpabNabOabPafabibepBnFtszhafimCQxHdvTvaewdFGahhahiagCaiqahjahkaldahmxrVqxraiUahnahoaaXahpahqahrahsahtaaXahvahwbilbimbinbiobipahAbiqahCahDahEbisabkaiDahHahfahfahfatJatJatJaaaaaaaaaaaaaaaaaaaaeaaaaaeaaaaaaaaeaaaaaeaaeaaeaaaaaeaaaaceaaaaaeaaaaaaaaeaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadacIacIacIacIacIaaaadkaaaacIacIacIacIacIaadaaQaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJabpajQansacgafahEFodavvuvvulOJabEybuagaaewahgahImKVahJagdahKaldaldahMafdwFZagJahNahOaaXahQahRahSahTafKaaXabkahXabkabkabkbiwbixbiyuqDaibbizaihaiiixTjxXhkrailagmahfatJaaaatJatJatJatJatJaadaadaaeaadaaeaadaadaaeaadaaeaaeaaeaadaaeaadaceaadaaeaadaadaaeaadaadaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaadhadiadiadiadiadjadkadladmadmadmadmadnaaaaaQcHqcHpcHppFCcHqcHpcHqcHqatJatJadbbiGafwpShbhFadZpSxaewaewbhvaewaewvXwdHPaewaewaiqaioaipaiqagdagdaisaitaiuafdaiLaenaiMaiMaixaiyaizaiAaiBsLfxmoontaiCammaeudDMaiDabkabkabkabkabkabkabkabkaiEbiEahfahfahfahfbhratJaaaaaaaaaaaaaaaaadaaaaaaaaaaadaaaaaaaaaatJaaaatJaaaaaaaaaaceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYaiGadTadTadTadTadTaaaadkaaaadTadTadTadTadTaadaaQaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaatJdTpazmiPSrZeagpacHajwnwobhyajtaivaePaiJaebtSKikBwzcahWaiKhaMbiJaiNabHaiNjxwaiNmDnsTIaiOaiPaiQaiRajxaiTcmPtCVaiWajaaiYaiZajaajboPUajdaiEbiCfALaonafmuzabhratJaaaaaaaaaaaaaaaaadaaaaaaaaaaadaaaaaaaaaatJaaaatJaaaaaaaaaaceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaaaaadaaaaadaaaaaaajeaaaaaaaadaaaaadaaaaaaaaQaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaatJaiIakXoNIxRhajfajgajhajiajjajkajlajmajnajoajpajqajrajWajpajuakiajWajWwUaaakajTajvaldsVXaeTamlajyanEajzajAajBajCiAkajEajFajGajHajIajdaiEaASanGanGaBIaqGaqGaqGaqGbiObiObiOaqGaqGaqGbiObiObiOaqGaqGaaaaaeaaeaaeaaaaaaatJaceatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaadaadaadajJajKajJaadaadaadaadaaQaaQaaQaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaatJaiHmQCalGaeKaiUagdajOajPagdagdajSajTajUajVfDCakaajUanojaXakaajUajZajTajTakcaggakdbiPakeakfakgaggalCakjaggaklakmaknakLakNaknbjixovajdalYaBJahfaBLaDlaqGapSapTaqHarwarzarAarBarCazMarIarJarHarMaqGaaaatJaaaatJaaaaaaaaaaceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaadaadaadajJajKajJaadaadaadaadaaQaaQaaQaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaatJaiHmQCalGaeKaiUagdajOajPagdagdajSajTajUajVfDCakaajUanojaXakaajUajZjwNmVzakcaggakdbiPakeakfakgaggalCakjaggaklakmaknakLakNaknbjixovajdalYaBJahfaBLaDlaqGapSapTaqHarwarzarAarBarCazMarIarJarHarMaqGaaaatJaaaatJaaaaaaaaaaceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaadaaaajJakpajJaaaaaaaadaaaaaaaadaaaaaaaaaakTakTakTakTakTakTaaaaaaaaaaaaaaaaaaaaaaiIaiIxdcaimlUCakYaiUaksaktakuaksagdakvxXbakzagdakBajsakzagdakBakyafgagdakCakDakCaggakFntsakGakHgcbakIakJakKaggajIakMsemakoakoakOakPalnajdaiEbiQamGaDmaDnaqGaswasyaszhuUxxKbiSapRasAapRhuUxxKbiSasBbiOaadatJaaaatJatJatJatJaceatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaadajJajJakSajJajJaaaaadaaaaaaaadaaaaaaaaaalzuMnbjaskyamiakTaaaaaaaaaaaaaaaaaaaaadcwakVanpakrxgzakYaiUiTKpDuakZqOCagdofualbaijalcofualbaijalcofualbyfzalfalgaletGcalhalialjxiBwdyfzNpjsallalmaggalnaloalralralralralsdCpajdvznbjcaqGanfangaqGasDasEaszbiTbiUllUjEmbiVwsqllUbiUbiWasBbiOaaaaaeaaeaaeaaaaaaaaaaceaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltalualtaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaadalvalwalxalyalvalzalzalzalzalzalzalzalzalzamiamiamialAakTaaaaaaaaaaaaaaaaaaaaaaiIaiIaiIamAhIsbhWaiUalEalFdjAwceagdmRJalIvXKalNfTValKpfEalNajNalMdkIalNgWDakaaczalPalQalRryPalkaexaggalUalVaggalnalXalZalZalZalZalWalnajdjouasCaqGaqGaqGaqGapPapQaszarKbiXbiYarDarDarDbiYarDbiZasBbiOaaaatJaaaatJaaaaadanIambanIaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltamcaltaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaadaaaaaaaadalvalwalxalyalvalzalzalzalzalzalzalzalzalzamiamiamialAakTaaaaaaaaaaaaaaaaaaaaaaiIaiIaiIamAhIsbhWaiUalEalFdjAwceagdmRJalIvXKalNfTValKpfEalNajNalMdkIalNgWDhBVaczalPalQalRryPalkaexaggalUalVaggalnalXalZalZalZalZalWalnajdjouasCaqGaqGaqGaqGapPapQaszarKbiXbiYarDarDarDbiYarDbiZasBbiOaaaatJaaaatJaaaaadanIambanIaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltamcaltaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalvamdameamfalvamgamgalzamhbjaamjalzamkalzqnPovQaRSamialzaaaaaaaaaaaaaaaaaaaaaaaaatJamnaiHabfijKaiUaiUaiUaiUaiUaiUamramsabGaiUamramuabGaiUamramuabGaiUirCajXamvaggamzamyamzaggaggaggaggaggaggalpamCdUOajcajEakQlQfxovaneamEaiFaiVatvbjdatwreSbjfaszarKarDarDarDarDarDarDarDbiZatxaqGaaaatJaaaatJaaaaadamaamHamaaadaadaadaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaltamIaltaadaaaaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamJamJamJamJamJamJamJamJamJamJamJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalvamKamLamMalvamNamOaziamQamiamRalzalzalzakTalzakTamPalzalzaaaaaaaaaaaaaaaaaaaiIaiIaiIozbaeIahZamUamVaiHamXajLtioanaanaanaanbanaanaanaanbanaanaanauOWamZamZamZamYanaanaalLandandandiyNandaneamBflsnaRajEajEbjblzbalnapavKcxeRlQqaflbjebjebjebjfatKrWEbjkarDarDbjlarDarDaDMaKtauvaqGaadaaeaaeaaeaadanIanIanianIanIaaaaaaaadaaaaaaaadaaaaaaaaaaaaaaaaadatJaaaaltamIaltaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamJamJamJamJamJamJamJamJamJamJamJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalvamKamLamMalvamNamOaziamQamiamRalzalzalzakTalzakTamPalzalzaaaaaaaaaaaaaaaaaaaiIaiIaiIozbaeIahZamUamVaiHamXajLtioanaanaanaanbanaanaanaanbanaanaanauOWamZhnfamZkkqanaanaalLandandandiyNandaneamBflsnaRajEajEbjblzbalnapavKcxeRlQqaflbjebjebjebjfatKrWEbjkarDarDbjlarDarDaDMaKtauvaqGaadaaeaaeaaeaadanIanIanianIanIaaaaaaaadaaaaaaaadaaaaaaaaaaaaaaaaadatJaaaaltamIaltaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamJanjanjanjanjanjanjanjanjanjamJaadaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaalvalvankanlalvanmamialzamiamiamiaziamiamiannamialBamSaoEakTaaaaaaaaaaaaaaafANdcwakVanpakrfORanrajDjOsafblFuanbanbanbanbanbanbanbanuanbanbanbanbanbanbanbanvanbanbanbanwanbanbanbanbanbanbanxalnanyaiXanAanBaiXanzamBaneamEanFaiVlfCbjenWVbjebjjgYUarKarDarDarDarDarDarDarDbiZavEaqGaaaatJaaaatJaaaanIanJanKanLanIaaaaaaaadaaaaaaaadaaaaadaaaaaaaaaatJaltaltaltamIaltaltaltaltaltaltaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamJanjanjanjanjanjanjanjanjanjamJamJanMamJamJaadaaaaaaaaaaaaalzalzalzalzalzaadaadalzanNanOanPanQamOalzalzakTakTalzalzalzalzakTalzalzamialzalzaaaaaaaaaaaaaaaaaaaiIaiIaiIdHZanTanTanUanVaiHanXanYanYanYanYanYanYanZaoaanYanYanYanYanYanYaalaoblYdaocafNaodaoeafNaofaogaohaoianeaojaokajdajdajdajdajdajdajdjouaolaqGaECbjebjebjebjfaszarKarDarDarDbjparDarDarDbiZasBbiOaaaatJaaaatJaaaanIaooaopaoqanIaaaaaaaadaaaaaaaadaaaaadaltalualtalualtaoramIamIamIamIamIamIaosaltaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjaotaouaovaowamJaadaaeaaealzalzalzaoxaoyaozalzaaaaaaalzamianOanmamiaoAalzaadaadaadaaFaadaadaadaaFaaFalzamialzatJaaaaaaaaaaaaaaaaaaaaaaaaarjarjarjarjarjarjarjaoGaoHaoHaoHaoIaoHaoHaoHaoJaoKaoKaoKaoLaoKaoKaoMaoNaoOaoPanGaoQanGanGanGanGaoRanGaoSaoSaoSaoSaoTaoUaoVaoWaoXaoXaoYaoZaqGbjqbjeauDbjebjoaszarLaGharEarFjySarFarGarFbjrasBbiOaaaaaeaaeaaeaaaanIapdapeapfanIapgapgapgapgapgalualualualtaphsMlaosaltaltamIaltaltaltaltapialtaltaadmTUcsjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
@@ -7899,19 +7935,19 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMatVatWatXamJatYbjPauaaubanRaucaudaueaufalzteyateaaFauhatfakTamiasfalzcRrrQDjtsjtsjtstbqauibaoaVEarjaqsarjaqraqrarjaaeaaeaaeaujaukaulaqsaqsarjarjaumarjarjcpFaoHaoHaunaoHauoaoHaoHaupauqaoKaoKaoKaoKaoKauranbausapEaiEaomaruarvaytarxauxauyaomaomawZaqFaomaomaxaaqFaomauBaqGaxcatDaxdaxdaxeaxfatEaqKaqKaqKaqKaqKatFasHaFaaqGaltaltaltaltaltamIaltapgapgapgapgapgapgapgapgapgaltauMauNaltaltaltaltaltaltaltaltamIauOarUatRatRauPauQatQauRarUatJaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSamJamJamJamJamJamJamJamJamJamJamJauTauUamJamJauValzataauWamiauXauYamiamialzteyateauZaadauZalzamiavaalzavbavcrGXvkTvrRavdaveaveaveaviqKsavgampampaviavfavfavfavgaviavgavgavhavgavjavhavkavlavmefGefGavoefGavpavnavnavqavrefGefGefGefGavsavtavuavuavvavwaomastasvasvazyauzauAauCauEauIavzavGawSawXawYaxbaxgatIayBatDayCaxdaxeaxfatIaqKaqKaqKaqKaqKatIauKauLaqGaFTaFSaltasLaqcamIavNaltavOaosavPavQaoraltatLaoraltavRamIaltavSamIaltavTavUavVkDmkDmkDmawxavYavZawaawbawcawdarUatJatJatJatJatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweawfawgawhawiawiawiawiaLLawiawiawjawkawlawmawnawoalzataauWawpamiawqamiawralzteyawsaveaveaveaveawtaveasebjQaVGawuknwjtsawvawwaAvawyawBawzawzawAawzawBawzawzawAawyawDawFawFawFawFawFawFawGawHawIawJawJawJawJawKawJawJawKawJawLawLawLawLawLawMawNawOawPawQaomaomaomaomaomatAayuayvazCazCazJaywayxayyayAayEazgazKazDazEazGazGazHazIatIaqKaqKaqKaqKaqKatIbjRaIqaqGamIamIatOamIamIamIamIamIamIaxlrcbrcbrcbrcbrcbrcbrcbaxmamIamIamIamIasRamIamIhbraxoaxpaxqaxraxsaxtatRatRatRaxuarUaadaoBaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaxvaaaaaaaaaaxwaxyaxzayTaxAaXbaxAaxCaxDaxDaxEaxFbdpaxGaxHaxDaxDaxIaveaxJauWaxKamiamiaxLaxMalzaxNaxOatZatZatZatZatZaxPateaxQdFfjtsceVjtsateaxRalzawEaxWawEaxXaxUawEaxWbjSawEaxUawEavXayaayaayaayaayaayaayaaybaycaydayeayfaygayhayiayjaykaylaymaynbjTaypayqayrwgvaysahfafmaomaruarvaBKarxazAazBazzazNaAVaBOazLaATayEayEaAUaBNaBUaAWapRapRasIauJaxfatEaqKaqKaqKaqKaqKaxhaxiaxjaxkamIamIaltaorayKayKayKayKaltmnyaltaltayLaltaltaltaltarPasLaltaltapialtamIasLhbrayMarSarUayNayOayPayQayRayOaySarUaadaoBaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweayVaweayUaBcayUayWaxBaxBayXayUaBcayUayYayZazaazbalzataauWalzalzalzalzazcazcazdazeazcazcazcazcazcteyawsaveaveaveaveaveazfaxRaoEawEaBMaBqaBqabFawEaeXaHzazhaHHawEaIDayaaAAazjaABaBwaCWayaaybaznazoazpazpazqazrazpazpazpazsaztaztazuazvayqazwanbazxahfafmaomastasvasvaDoaBPaBQaDraEHaEHaDraBRaBSaDpaDsaDtaDuatIaDAaDBaDCaDDaDKaDNayIaqKaqKaqKaqKaqKayJaltaltaltamIamIaltaltayKazOazPayKapZmnyaltazQfHRpkvaltphKaltazSazTaltazUamIaltapiapiaIpazVapiarUazWayOazXazYazXayOazZarUaadaadatJaadaadiWgaadaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSaAaauSaAbaRJayUaAcaAdaAeaAfayUaRJaAbayUauSaAgaAhalzaAiaAjaAkaAkaAkaAlazcaAmaAnaAoaApaAqaAraAmazcaAsaAtaAujilaAvaAvaAvaAvaAwarYawEaHIaBqaICaIYawEaIZaJcaHzaJfawEavXayaaCXaABaACaABaCYayaaAEaAFaAGaAHaAIaAJaAKaALaAMaANaAOaAPayoayoayoaAQazwanbaARahfafmaomaomaomaomaomaDvaDwaDxaEDaEGaEIaEJazFazFazFazFazFaITaGbaGcaAXaITaILaILayJaqKaqKaqKaqKaqKayJaltapZamIamIbjJaltaAYayKaAZaBaayKamIarPaltsFHmtgfHRaOYiFMaltarPamIaltbjUamIaltaBbbjJhbrayMaqTarUarUarUarUarUarUarUarUarUaCwatJaaaaaaaaaatJaoBaoBaoBaoBaaaaaaaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaayUaQJayUayUayUayUayUayUaQJayUaaamJZaBdazbaBeaBfaBgaBeaBeaBeaBhazcaAmaBiaBjaBkaBlaBmaAmazcaBnaBoaBnaBnaBnaBnaBnaBnaBpaBnawEaJRaBqfGeaJSawEaJTaHzaJVaJWawEavXayaaCXaBwaBxazjaCYayaaqsaBzaydaBAaBBaBCaBDaBEaAPaBFaBGayoayoaBHayoaAQazwanbazxahfafmaomaFVaFWaFXbjVaFHaFYazFazFazFazFaGdazFaGoaGfaGfazFaGpaHxbjWbjXaHAaHCaHDayJaqKaqKaqKaqKaqKayJaltaBYaDLaBZaCaaltaltayKaCbaCcayKaCdaCealtaltaltaltaltaltaCfaCgaChaCiaCiaCiaCjaCkaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCwaCwaadaadaadaadaadaadatJiWgiWgiWgatJatJatJiWgiWgiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSayWaCxaBeaCyaCzaCAaCBaCCaCDazcaAmaCEaCGaCHaCIaCGaAmazcaCJaCKaCLaCMaCNaCOaCPaCQaEjaEmawEawEawEaxTawEawEawEaKhawEawEawEavXayaaCZaDabjYbjZbkaayaaqsaDbaydaDcaDdaDeayoaDfaDgaDhaDiaDjaAQayqaDkayqazwanbazxahfafmaomaGgaFZaHuaHvaGaaGeaDqaHEaIXaYYaZgaYWbavbcwaHLazFaHNaHObjWbjXaJaaJbdqNaBVaBWaBWaBWaBWaBWaBXaltaBYaDLaDEaDFaDGaDHayKaDIaDJayKarPamIaltaaaaltaFUaGvaGxaGyaGAjekjekjekbkbjekaDPaDQaDRaDSaDTaDTaDTaDUaVqaDWaDXaDYaDZaEaaEbaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaEcaBeaEdaEeaEfaEgaEhaEiazcaFraFsaFwaFxaFsaFwaFxaEkaGVaGYaGZaHaaGZaGZaGZaGZaIuaGVawEaKiaKjaKkaKkaGjaHyaKkaKpaKrawEaxZayaaEraEsaEtaEuaEvayaaqsaEwaydaydaDiaExaEyaEzaEAaydaydayoayoayqaEBayqazwanbazxahfafmaomaGgaHtbczbdwazAaGlaEKaEKaEKbkcaEMaEKbghbghbgiazFaITaJnaLMaLUaLXaJjaMgaCiaCiaCiaCiaCiaCiaCiaCibkdaltaltaltaEPaltayKaEQaERaESaETaEUaEVaEWaEVaHwaHBaHVaHWaHXaFbaFbaFbaFbaFbaFdaFeaCwaCwaCwaCwaCwaCwaCwaFfaFgaFhaCwaCwaCwaadaadaadaadaadaadaadaadaadaadatJatJatJatJatJatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaFiaBeaFjaFkaFlaFmaFnaFoazcaIzaYjbfNbgTbkeaCFaFqazcaIvaIwaFtaFuaElaElaElaFvaIxaIyawEaLcaLgaKkaLhaLkaLlaKkaLnaLoawEaFDayaaFEaFFaEtaFGaENayaaqsaFIayqaFJowraFKaFLaFMowraFNayqaFOaFPayqaFLayqaFQaoNaFRahfafmaombkfbkgbkhbjVaHGaHJazFbaubaKbkibkjazFazFazFazFazFaNoaNyaNIaNUaOdaOmaOwaOxaGiaGkjekjekjekjekaGmaGnaLWaOCaOCaRlbkkbklaSuaCnaGqaGraGsaGtaGuaGtaHYaGwaFbaHZaIaaKIaKJaOMaGBaFbaGCaGDaCwaGEaGFaGGaGHaGIaGJaGKaGLaGMaGNaGOaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGQayUayWbkmaBeaBeaGSaGTaGUaGTaBeazcazcazcazcazcazcaGWaGXazcaIAaIBaJUaJUaJUaQKaJUaJUbknbkoawEaLpaLxaKkaLkaLSaLkaKkaLTaLZawEaxZayaaHdaHeaHfaHgaHhayaaqsaHiayqaHjayoaHkaFLaHlayoaHmayqaAQaAQayqaHnayqaHoaHpaHqahfanDaomaomaomaomaomaHraHsazFazFazFbjmbkpbkqbkqaLYaMcazFaSwbbVaNuaSJaJdaTTaJdbkraJdaVmaJdaJdaJiaJibksaHKaVnaHMaNvaHKaNxaWJaWLaHPaHQaHRamIaHSaHSaHSaHTaIoaFbaMraNEaOzbagbcbbktaFbaIbaIcaCwaIdaIeaIfaIgaGIaIhaFfaFgaDYaIiaIjaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaIraIlaImaIlaInbkuaLfbkuaLqaLvbkvbkwaxYaCFbkxazcbkybkzbkAbkBbkCbkDbkEbkFbkGbkHawEaMaaMbaKkaKkaKkaKkaKkaMNaMaawEaxZayaaIEaIFaIGaFGaIHayaaqsapyayqaIIjXjaFLaFLaFLaIJaIKayqbkIbkJaHFaIMaINaIOaIPbkKbkLaISaIQbkMbkNaITaOuaIVaIWazFbaubbpbkObbcbbcbbcbbcaOvazFaYlbbVaIPbaEaJdaYpaYqaYXaZSaZVbbbaJdaNraNrbbRaOcaKuaJkaJlaJiaJmaHSaHSbbXaHTaHSaHSaHSaJoaJpaHTsGRaFbaJqaJraJsaJtaJuaJvaFbaJwaJxaJyaJzaJAaJBaJCaJDaIhaFfaJEaDYaGNaJFaGPaaaatJaaaaaaatJaaaaMzaMzaMzaMzaMzaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaxvaaaaaaaaaaxwaxyaxzayTaxAaXbaxAaxCaxDaxDaxEaxFbdpaxGaxHaxDaxDaxIaveaxJauWaxKamiamiaxLaxMalzaxNaxOatZatZatZatZatZaxPateaxQdFfjtsceVjtsateaxRalzawEaxWawEaxXaxUawEaxWbjSawEaxUawEavXayaayaayaayaayaayaayaaybaycaydayeayfaygayhayiayjaykaylaymaynbjTaypayqayrwgvaysahfafmaomaruarvaBKarxazAazBazzazNaAVaBOazLaATayEayEaAUaBNaBUaAWapRapRasIauJaxfatEaqKaqKaqKaqKaqKaxhaxiaxjaxkamIayKayKayKayKayKayKayKaltjQFaltaltayLaltaltaltaltarPasLaltaltapialtamIasLhbrayMarSarUayNayOayPayQayRayOaySarUaadaoBaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweayVaweayUaBcayUayWaxBaxBayXayUaBcayUayYayZazaazbalzataauWalzalzalzalzazcazcazdazeazcazcazcazcazcteyawsaveaveaveaveaveazfaxRaoEawEaBMaBqaBqabFawEaeXaHzazhaHHawEaIDayaaAAazjaABaBwaCWayaaybaznazoazpazpazqazrazpazpazpazsaztaztazuazvayqazwanbazxahfafmaomastasvasvaDoaBPaBQaDraEHaEHaDraBRaBSaDpaDsaDtaDuatIaDAaDBaDCaDDaDKaDNayIaqKaqKaqKaqKaqKayJaltaltaltamIayKtmhfZlkKbazOazPayKapZmnyaltazQfHRpkvaltphKaltazSazTaltazUamIaltapiapiaIpazVapiarUazWayOazXazYazXayOazZarUaadaadatJaadaadiWgaadaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSaAaauSaAbaRJayUaAcaAdaAeaAfayUaRJaAbayUauSaAgaAhalzaAiaAjaAkaAkaAkaAlazcaAmaAnaAoaApaAqaAraAmazcaAsaAtaAujilaAvaAvaAvaAvaAwarYawEaHIaBqaICaIYawEaIZaJcaHzaJfawEavXayaaCXaABaACaABaCYayaaAEaAFaAGaAHaAIaAJaAKaALaAMaANaAOaAPayoayoayoaAQazwanbaARahfafmaomaomaomaomaomaDvaDwaDxaEDaEGaEIaEJazFazFazFazFazFaITaGbaGcaAXaITaILaILayJaqKaqKaqKaqKaqKayJaltapZatLamIayKaAZaAYsDVaAYaBaayKamIarPaltsFHmtgfHRaOYiFMaltarPamIaltbjUamIaltaBbbjJhbrayMaqTarUarUarUarUarUarUarUarUarUaCwatJaaaaaaaaaatJaoBaoBaoBaoBaaaaaaaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaayUaQJayUayUayUayUayUayUaQJayUaaamJZaBdazbaBeaBfaBgaBeaBeaBeaBhazcaAmaBiaBjaBkaBlaBmaAmazcaBnaBoaBnaBnaBnaBnaBnaBnaBpaBnawEaJRaBqfGeaJSawEaJTaHzaJVaJWawEavXayaaCXaBwaBxazjaCYayaaqsaBzaydaBAaBBaBCaBDaBEaRlaBFaBGayoayoaBHayoaAQazwanbazxahfafmaomaFVaFWaFXbjVaFHaFYazFazFazFazFaGdazFaGoaGfaGfazFaGpaHxbjWbjXaHAaHCaHDayJaqKaqKaqKaqKaqKayJaltaBYaBZamIaCaayKaXwsOtaCbaCcayKaCdaCealtaltaltaltaltaltaCfaCgaChaCiaCiaCiaCjaCkaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCwaCwaadaadaadaadaadaadatJiWgiWgiWgatJatJatJiWgiWgiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSayWaCxaBeaCyaCzaCAaCBaCCaCDazcaAmaCEaCGaCHaCIaCGaAmazcaCJaCKaCLaCMaCNaCOaCPaCQaEjaEmawEawEawEaxTawEawEawEaKhawEawEawEavXayaaCZaDabjYbjZbkaayaaqsaDbaydaDcaDdaDeayoaDfaDgaDhaDiaDjaAQayqaDkayqazwanbazxahfafmaomaGgaFZaHuaHvaGaaGeaDqaHEaIXaYYaZgaYWbavbcwaHLazFaHNaHObjWbjXaJaaJbdqNaBVaBWaBWaBWaBWaBWaBXaltaBYaDEaDFaDGayKaDHbgOaDIaDJayKarPamIaltaaaaltaFUaGvaGxaGyaGAjekjekjekbkbjekaDPaDQaDRaDSaDTaDTaDTaDUaVqaDWaDXaDYaDZaEaaEbaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaEcaBeaEdaEeaEfaEgaEhaEiazcaFraFsaFwaFxaFsaFwaFxaEkaGVaGYaGZaHaaGZaGZaGZaGZaIuaGVawEaKiaKjaKkaKkaGjaHyaKkaKpaKrawEaxZayaaEraEsaEtaEuaEvayaaqsaEwaydaydaDiaExaEyaEzaEAaydaydbgPdrRayqaEBayqazwanbazxahfafmaomaGgaHtbczbdwazAaGlaEKaEKaEKbkcaEMaEKbghbghbgiazFaITaJnaLMaLUaLXaJjaMgaCiaCiaCiaCiaCiaCiaCiaCibkdaltamIaEPayKayKayKaEQaERaESaETaEUaEVaEWaEVaHwaHBaHVaHWaHXaFbaFbaFbaFbaFbaFdaFeaCwaCwaCwaCwaCwaCwaCwaFfaFgaFhaCwaCwaCwaadaadaadaadaadaadaadaadaadaadatJatJatJatJatJatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaFiaBeaFjaFkaFlaFmaFnaFoazcaIzaYjbfNbgTbkeaCFaFqazcaIvaIwaFtaFuaElaElaElaFvaIxaIyawEaLcaLgaKkaLhaLkaLlaKkaLnaLoawEaFDayaaFEaFFaEtaFGaENayaaqsaFIayqaFJowraFKayoaFMowraFNayqaFOaFPayqaFLayqaFQaoNaFRahfafmaombkfbkgbkhbjVaHGaHJazFbaubaKbkibkjazFazFazFazFazFaNoaNyaNIaNUaOdaOmaOwaOxaGiaGkjekjekjekjekaGmaGnaLWaOCxYDbkkbkkbklaSuaCnaGqaGraGsaGtaGuaGtaHYaGwaFbaHZaIaaKIaKJaOMaGBaFbaGCaGDaCwaGEaGFaGGaGHaGIaGJaGKaGLaGMaGNaGOaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGQayUayWbkmaBeaBeaGSaGTaGUaGTaBeazcazcazcazcazcazcaGWaGXazcaIAaIBaJUaJUaJUaQKaJUaJUbknbkoawEaLpaLxaKkaLkaLSaLkaKkaLTaLZawEaxZayaaHdaHeaHfaHgaHhayaaqsaHiayqaHjaFLaHkkcIaHlaFLaHmayqaAQaAQayqaHnayqaHoaHpaHqahfanDaomaomaomaomaomaHraHsazFazFazFbjmbkpbkqbkqaLYaMcazFaSwbbVaNuaSJaJdaTTaJdbkraJdaVmaJdaJdaJiaJibksaHKaVnaHMaNvaHKaNxaWJaWLaHPaHQaHRamIaHSaHSaHSaHTaIoaFbaMraNEaOzbagbcbbktaFbaIbaIcaCwaIdaIeaIfaIgaGIaIhaFfaFgaDYaIiaIjaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaIraIlaImaIlaInbkuaLfbkuaLqaLvbkvbkwaxYaCFbkxazcbkybkzbkAbkBbkCbkDbkEbkFbkGbkHawEaMaaMbaKkaKkaKkaKkaKkaMNaMaawEaxZayaaIEaIFaIGaFGaIHayaaqsapyayqaIIjXjdDdayorCWaIJaIKayqbkIbkJaHFaIMaINaIOaIPbkKbkLaISaIQbkMbkNaITaOuaIVaIWazFbaubbpbkObbcbbcbbcbbcaOvazFaYlbbVaIPbaEaJdaYpaYqaYXaZSaZVbbbaJdaNraNrbbRaOcaKuaJkaJlaJiaJmaHSaHSbbXaHTaHSaHSaHSaJoaJpaHTsGRaFbaJqaJraJsaJtaJuaJvaFbaJwaJxaJyaJzaJAaJBaJCaJDaIhaFfaJEaDYaGNaJFaGPaaaatJaaaaaaatJaaaaMzaMzaMzaMzaMzaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaJGaJHaJIaJHaJJaJHaJHaJHaJKaLObkPbkQaxYaJMaxYazcaJNaJOaJNaBnaBnaBnaBnaJNaJPaJQawEawEaMPaNjaNjaNkaNjaNjaNlawEawEaJXayaaJYayaaJZaKaaKbayaarjaoJayqayqayqaAQaKcaAQayqayqayqbkRbkSbkTaKdaIPaIPaIPaIPaIPaKebkUbkVbkWaITaWGaIVaKgazFazFazFazFazFazFazFazFaKqazFaITaPMaTSbcfaJdbcWaELaPLbdxbdHbdZaJdaDzaNsaNsaNsaOyaKvaKwaJiaKxaKyaKzaKAaKBaKCaKDaKEaKFaKGaHTsGRaFbaKHaOMaOMaONaOMaKKaFbaKLaKMaKNaKOaKPaKQaKRaCwaCwaKSaFgaDYaIiaIjaGPaaaatJavJaQgaQgaQgaMybkYaNJaNLaMzaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSaKTaxBaKUaKVaKWaKXaKYaKZhgAaLaaLbaxBaIraNXaNYaNYaNYaOaaNYbkZaNYaNYaNYaNYaNYaNYblaaObblbblcbldaNYaNYaNYaNYaNYbleaNYblfblgblhaLraLmaLsaLmaLtaMWaLuaOeaLwaLRaEEaIRaIRaIRaLNaLPaLPbljaLPaLPaIPaIPaIPaNfaIPaIPaIPaLPaLPblkaLHaLIaLJaLKaPJbcXaNKbllaLPblmblnbloaXUaYkbeMaZMaZMblpaJdaTTaJdbkrbgoaJdaJdaJdaJiaQGaRnaMdaKuaMeaMfaJiblqaMhaMhaMiaMjaMkaMlaMmaMnaMoaHTsGRaFbaGzblraOMaONaMpozRaFbaMsaMtaCwaMublsaKRaKRaCwaMvaMwaMxaDYaCwaCwaCwuzBuzBuzBaQkaQlbltaMybluaQjaOXaMzaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaayUaRNayUayUayUayUayUayUaRNayUaaamJZaBdaMAaKUaMBaMCaMDaMEaMFaweaMGaLbaMHaIkaLdaMIaMJaMLaMKaMLaMMaLeaLeaLeaLeaLeaLeaLeaLiaLdaLeblvaLeaLeaPKaPOaMQaMRaMQaMRaMSaMQaMTaMQaMUaMQaMVaOnaMXaMYaMZmMXthejqfaIPaIPaIPaIPaIPotMthejqfaLAaLBaNcaLDaNeaLFaLGmMXthevtIaIPaNhaIPaIPaIPmMXthejqfaIPaNiaIPaIPaIPaWIaIPaIPaIPblwaJdblxblyaKsblzaPQaWKaQFaJiaJiaJiaJiaYuaNwaJiaJiaJiaJiaHSaNzaHSaHSaHSaNAaNBaNAaHTsGRaFbaFbaFbblAblBaFbaFbaFbaFbaFbaFbaFbaCwaCwaNFaCwaFfaFfaFgaDYaNGaNHaCwbrZaSZaRkazRkOhpVvaMyaQmaQjaOXaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSaAaauSayUaRJayUaNNaNOaNPaNQayUaRJayUayUauSayWaxBaKUaNRaNSaMDaMEaMFaweaNTaLbaxBaPmaPnaPvblCaPwaPwaPwaPxaPyaQCaNVaNZaPwaPwaPwaQEblDaPwblEblFblFblGaSyaQIaOgaOfaOgaOhaOiaOjaOlaOkaQMaRPaWUaOoaOpaIPaOqaOqaOqaOraOqaOqaOqaOqaOsaOqaOqaNbaNaaNgaLEaOtaLCaNdaOqaOqaPPaOqaOqaOqaOqaOqaOqaOqaOqaIPaIPaIPbfQbfQaRfbfQbfQbfQblHaJdblIblJblKblLaJhaLQaLQbeLblMblNaOAaOBaODaWFaOEblOaJiaOFaOGaOHaOIaKmaOHaOJaOKaHTsGRaFbaOLaOLaOMaONaOOaOOaOPaFbaOQaORaOSaCwaFfaFfbpJaFfaFflbTaDYaCwaOWaCwaQnbamipqazRbcjaSWaMyaSXaOZaSYaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSaAaauSayUaRJayUaNNaNOaNPaNQayUaRJayUayUauSayWaxBaKUaNRaNSaMDaMEaMFaweaNTaLbaxBaPmaPnaPvblCaPwaPwaPwaPxaPyaQCaNVaNZaPwaPwaPwaQEblDaPwblEblFblFblGaSyaQIaOgaOfaOgaOhaOiaOjaOlaOkaQMaRPaWUaOoaOpaIPaOqaOqaOqaOraOqaOqaOqaOqaOsaOqaOqaNbaNaaNgaLEaOtaLCaNdaOqaOqaPPaOqaOqaOqaOqaOqaOqaOqaOqaIPaIPaIPbfQbfQaRfbfQbfQbfQblHaJdblIblJblKblLaJhaLQaLQbeLblMblNaOAaOBaODaWFaOEblOaJiaOFaOGuNxaOIaKmaOHaOJaOKaHTsGRaFbaOLaOLaOMaONaOOaOOaOPaFbaOQaORaOSaCwaFfaFfbpJaFfaFflbTaDYaCwaOWaCwaQnbamipqazRbcjaSWaMyaSXaOZaSYaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweawfaweayUaXfayUayWaxBaxBayXayUaXfayUaPcaPdaPeaxBaKUaPfaPgaKXaPhaKZaweaPiaLbaLOblPblQmgyaPkaPlaPlaPlaPlaPlaPlaQHaQLaPlaPoaPlaPlaPlaPpaPqaPraPqaPsaPtaPuaYMaLeaRObeuaRZbexblRaPzaScaPAaPAaPMaRgaRmaILaILaILaILaILaILaILaILaPCaPDaPEaPFaPEaPEaPEaPGaPEaPHaPEaPIaPCaILaILaILaILaILaILaILaILaPMaTSaUTaJdaJdaJdblSbeNbeNblSaJdaMOblTaRsblUblVblWblVaJiaSBblXblYaNmaNnaPRaRpblZbmaaOHaPSaPTaPTaPTaPTaPUaVtaHTaHUaFbaPVaMpaOMaONaMpaMpaPWaFbaPXaPYaPZaCwaFfrFuaQaaQbaQbaQcaQdaQeaQfaCwqqnbfTbmbbmcbmdaPbaMyaUsaVCbmeaXcaRkaRkaXdaRkbmfaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaQoaaaaaaaaaaxwaxyaxzayTaQpbkuaQqaPeaxBaxBaQraQqbkuaQpaPeaxBaxBaxBaQsaQtaQuaQvaQwaQxbmgaQyaQzaLObmhbmiaPjaQBaPluQvbpMlqGfNxaPlsswaThaTmnVktRyaUfaUCaPpaQNaQOaQPaPsnbdaPuaPuaQRaPuaPuaPAaPAaQSaQTaPAaPAaPAaQUbjWbbeaILaaaaaaaaaaaaaaaaaaaaauKSaKnaQVaQWaQXaQYaQZaRaaRbaRcaRdaReuKSaaaaaaaaaaaaaaaaaaaaaaILaVNaIPbjXaJdbmjaRjbmkaTUaNpbmlaWHbmmbmnbdaaSaaSaaSabmoaJiaSBaRoaRqaRuaRraRtaStaSEbmaaOHaRvaVsbmpbmpbmqaRxaOHaHTaRyaFbaRzooZbmraONaRAaRAaRBaFbaFbaRCaFbaCwaRDaGNaOTaREaREaOUaOVaCwaCwaCwaYNbmsbmtbbkaZNbnSaMyaRGaRHaMzaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShctzaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTaHUaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
@@ -7923,16 +7959,16 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXjleaTcaVFaUwboJbapaUwbaqaUwaTcbarbasbataPlfrpbpgbpfboLbpfbpfbpfbpflcjeZweZwhrcbfMaPlaZhaZibaxbayaZjbazaZmaZnaWdbaAaZpaZpaZGbaBaZpbaDbbxbbVaIPbbZaZvbaFbaGbaHbaIbaJbcebaLbaMbaNbaOaZAaZAbaPbaQbaPaZAaZAbaRbaSbaCbaTbaUbaXbaYbbzbaVboMaZDbnYaIPbjXaJdaJdblSblSaJdaJdaJdblSblSblSaJdboNaJdboOboPboyboQboRboRboRboRboRboRboSboyboTbbgbbgboTboUboVboWboTaHTaZZbaababaFbaFbaFbbbhaFbbbhaFbbbhaFbaFbaCwaCwbbibbibbibbibbibbiaCwaCwbbjaQjboXboYboZbpabpbbpcaQhaQibpdbpGaRkaRkaRkaRkbpIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRauSauSayUayUayUayUauSayUayUayUayUayUayUayUayUauSauSmJZayWjuXaweaTcaTdaTcaTcaTcaTcaTeaTcaTcbbmbbnbboaPlsyvoDnlAqhfQxWoxWoxWonVjqMfaUEhPxxenkBcaPlbbtaZinkZbbubbvbbwaZmaZnbphaZsbbybaZbbabbAaZpbpibbCbbVaIPbbZbbDbbEbaJbbFbbGbbGbbHbbIbbJbaNbbKaZAaZAbaPbbLbaPaZAaZAbbMbaSbbBcnlcmeaXWbbSaYabaWbbOaZDbnYbbUaIPaLPbembembembecbpkbehbembembembeibembembembembeobembembembembembembembembplbembembembembembembembcabepbccbcdbaabesbembplbembembembembembembekbeobfObembembembembembembbWbpmbpcaQjbpnbpoaYKbfHaYKbppaYLaQiaOXaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanauScsHndAbpqayUawiawhawiawiawiawiawiawiawiawiawhawibprbpsaxDbcmbcnbcobcpbcpbcpbcqbcrbcsaPjbctbcubcvaPlaPlduzaPluYcaPlrzmaPlaPlaPlkhQlQXbdybptaPlaZhaZinkZbcAbcBbcCbcDbcEbcFbcGbcGbcGbcHbcIaZsbcJaWdaQUaNhbbZbcKbcLbaJbcMbcNbcObcPbcQbcRbaNbcSbaPaZAbcTbcUbcTaZAbaPaZCbaSbbPcnlcmeaXWbdVaYabaWbpuaZDbpvaIPaIPaIPfmHgxypUcbaabpwbpxbaabaabaabaabcYbaafmHgxypUcbaabcZaYzaYzaYzbvTaYzaYzbpyaYzbpzfmHgxypUcbaabdbbdcbddbdebdfbdfbdfbdgbdibdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdhbdibpAbdkbdkbdlbpBbpCaXaaXabpDbpEbpFbpdbpGaRkaRkbpHaRkbpIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaayUjzlaKXaKXbpKbdqaxAaXbaxAazaaxBaxBbdqaxAaXbaxAazaaxBaxBaxBbdrbdsbdrbdrbdrbdrbdtbduaPjaPjaPjbdvaVLaPlaUDbfRaTiaPlaUDbfRbpNaPlaPlaPlaPlbdAbdBaPlaZhaZibdCbdDbdEbdFaZmbdzaWdaWdaWdaWdaWdaWdaWdbdGaWdbfPaIPbbZbcKbdIbaJbcMbdJbdKbcPbcQaBrbaNbdLbdMaZAbdNbdObdPaZAbdQbdRbaSaBtbbTbcVbdWbdXbpRbaWbdSaZDbnYbeaaIPbedbgBbgBbgBbpSbpTbpUbgBbgBbgBbpVbefbeebuybgDbgBbgBbgBbgBbgBbpXbqbgwAbgBbpZbqabqbbqcbgBbgDbqdbqebenbqfbqgbeqbeqbeqbaabpZbgDbqhbgBbgBbaafmHgxypUcbaaroPbaafmHgxypUcbaabbWbqibqjbevbqkbfUbqlbqlbqlbqlbqmbqnbqoaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJaaebanauShUbaKXbqpayUbqqayUbqrayUayWaxBaxBayXayUbqsayUayYbezbeAbeAbdrbeBbeCbqtbeEbeFbdtbeGbeHbeIbeIbeJbeKaPlfKXbfRbfRaPlfKXbfRbfRaPlbqzbqAbeObePbeQbeObeRaZibeSbeTaZjbqBaZmaPjbeVbeWbeXbeXbeXbeXbeYbeZbeVbqCaIPbbZaZvbaJbfbbfcbfdbfebffbcQbfgbfhaXYbfibfjbfkbfkbfkbflbfmaYdbfnaCRbdUbdYbqDbfobpRbaWbfpaZDbnYaIPbjXbfvbfvbfvbfvbfvbfvbfvbfwbfxbfxbFWbqEbqFbfwberberberberberbfBbfBbIzbfBbfBbxwbxwbfCbrAbsScPPbsSbqHbfGbqIbqJbfJbfJbfJbfKbfLbfLbfLbfLbfLbqKbqLbqLbqLbqMbqLbqNbqObqLbqLbqPbfSbfSbfSbfSbqQbmtbqRbqSbqSbqRydtbqTbqTaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaayUjzlaKXaKXbpKbdqaxAaXbaxAazaaxBaxBbdqaxAaXbaxAazaaxBaxBaxBbdrbdsbdrbdrbdrbdrbdtbduaPjaPjaPjbdvaVLaPlaUDbfRaTiaPlaUDbfRbpNaPlaPlaPlaPlbdAbdBaPlaZhaZibdCbdDbdEbdFaZmbdzaWdaWdaWdaWdaWdaWdaWdbdGaWdbfPaIPbbZbcKbdIbaJbcMbdJbdKbcPbcQaBrbaNbdLbdMaZAbdNbdObdPaZAbdQbdRbaSaBtbbTbcVbdWbdXbpRbaWbdSaZDbnYbeaaIPbedbgBbgBbgBbpSbpTbpUbgBbgBbgBbpVbefbeebuybgDbgBbgBbgBbgBbgBbpXbqbgwAbgBbpZbqabqbbqcbgBbgDbqdbqebenbqfbqgbeqbeqbeqbaabpZbgDbqhbgBpwPbaafmHgxypUcbaaroPbaafmHgxypUcbaaaDLbqibqjbevbqkbfUbqlbqlbqlbqlbqmbqnbqoaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJaaebanauShUbaKXbqpayUbqqayUbqrayUayWaxBaxBayXayUbqsayUayYbezbeAbeAbdrbeBbeCbqtbeEbeFbdtbeGbeHbeIbeIbeJbeKaPlfKXbfRbfRaPlfKXbfRbfRaPlbqzbqAbeObePbeQbeObeRaZibeSbeTaZjbqBaZmaPjbeVbeWbeXbeXbeXbeXbeYbeZbeVbqCaIPbbZaZvbaJbfbbfcbfdbfebffbcQbfgbfhaXYbfibfjbfkbfkbfkbflbfmaYdbfnaCRbdUbdYwQebqDbpRbaWbfpaZDbnYaIPbjXbfvbfvbfvbfvbfvbfvbfvbfwbfxbfxbFWbqEbqFbfwberberberberberbfBbfBbIzbfBbfBbxwbxwbfCbrAbsScPPbsSbqHbfGbqIbqJbfJbfJbfJbfKbfLbfLbfLbfLbfLbqKbqLbqLbqLbqMbqLbqNbqObqLbqLbqPbfSbfSbfSbfSbqQbmtbqRbqSbqSbqRydtbqTbqTaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclauSauSayUayUbqUayUaAbaRJayUaAcaAdbfXbfYayUaRJaAbayUauSaAaauSbdrbfZbgabgabgabgbbgcbgdbgebcnbqVbqWbggaPlbpObgjwixaPlbpObgjwixaPlbgkbglqGPbgnqGPqGPbrbbgpbgqaZkbgrbgsaZmbeUbgtbgubeVbgvbgwbgxbgyaPNbgAbrcbgCbrdaZvbgEaZvbgFbgGbgHbgIaXNaXObrebfrbbQbdTbfqbfsaCUaFAaFBbrfbrgbftaZBbrhbricnmbrjbaWbgNaZDbnYaIPbrkbfvbrlbrmbrnbrobrpbfvbrqbrrbrrbrubrsbrtoosbfDbrvbrwbrxberbfEbfFbrybpWbfBbsNbrBbrCbrAbrDbrEmBkbqHbrFbrGbrHbrIbrJbrKbrLbrMbrNbrObrPbfLbrQbrRbrQbfLbrSbrTbrSbfSkUVbrVbrUbfSbrWbrXbfSbrYbmtbrZbsabsbaSZaMyaMzaMzaMzaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadayUbscayUayUayUayUayUayUbsdayUaadaadaadaaabdrbsebdrbsfbgabsgbshbdraRTbsiaPjbsjbskbsmbsmbsmbsmbsmbsmbsmbsmbsmbsobspbsqbsqbsqbsqbsqaZmaZmbsraZiaZmaZmbeVbssbstbsubsvbswbsxjdjbsybszbqCaIPbsAaZvbsBaZvaZvaZvaZvbgIbcQbsCaZvbsDaAxaAxaAyaHcaAzaAxaAxbsDaZDbgObbNbgPbgQbaWbpRbaWbsEaZDbnYaIPbjXbfvbsFbsGbsHbsHbsIbsJbrtbsKbrtbrtbrsbrtbrtbfDuHibxxbsMberbsQbsObsPbPBwytiJKtmtvQxbrAbsSgFObxjbqHbsUbqIbsVbsWbsXbsYbsZbtabtbbtcbtdbtebtfbtgbthbfLbtibtjbtkbfSbgRbgSbgRbtlbgRbgRbfSbrYbmtaMyaMyaMyaMyaMyaaaatJaaeaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaabdrbtnbtobtpbtqbtqbtrbtsbttbtuaPjbtvbtwbtxbtxbtxbtybtybtybtybtybtybtzbtAbsqbtBbtCbtDbtEbtFbtGbtHbtIbsqbtJbtKbtLbeVbeVbtMbtNbtObtPbtQbtRbtSbtTbbZbtUbtVbtWbtXbtYaZvbgJbtZaZvaZvaadaAxbuaaBsbubbucaBvaAxaadaZDaZDbudbpjbuebaWbufbugbuhaZDbnYaIPbjXbfvbuibsGbujbukbulbumbrtbunbuobupbuqburbusbfDhjpvKwhwYberbsQbuvbuwbuxbfBbrzbpYbsRbsTbqHbqHbqHbqHbuAbqIbuBbuCbuDbuEbuBbtabuFbuGbtcbtcbtcbtcbuHbfLbuIbuJbuKbfSbuLbgRbgRbuMbuNbuObfSbrYbuPbuQbuRbuSbuTaaeaaeaaeaaeatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrbuUbdrbuVbuWbuWbuXbdrbuYbuYaPjbuZbvabuZbuZbuZbvabuZaPjaPjbsqbsqbvbbvcbsqbvdbvdbvdbvdbvdbvdbvebvfbvgbvhbvibvjbvkbvlbvmbvnbvobswbvpbszbqCbvqbvrbvsbvtbvubvvbvwaZvbvxbvyaZvaadaadaAxbvzaCSbvAaFzbvBaAxaadaadaZDbvCbvDaZDaZDaZDaZDbvEaZDbvFaIPbvGbfvbvHbvIbvJbsHbsIbvKbrtbunbvLbvMbvNbvObvPberbvRbvSiXJberbsQbvUbvVbvWbfBbrAbrAbrAbrAbqHbvYbOmbvZbuAbqIbwabsWbwbbsYbwcbtabwdbwebwfbwgbwhbwibwjbfLbwkbuJbwlbfSbwmbwnbwobwpbwqbwrbfSbrYbuPbwsbwtbwtbwtatJaaaaaaaaeaaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbwubtobwvbuWbwwbwxbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybwzbwAbwBbwCbwDbvdbvdbvdbwEbvdbvdbwFbwGbwHbtPbwIbwJbtPbwKbwLbwMbswbwNbeVbwObwPbbfbtUbwQbwRbwRbwRbwRbwSbwTbwRaadaaaaAxaEnaHbaEobwUaEqaAxaaaaadaZDbwVbwWbwXbwYbwZaZDbxaaZDbxbaIPbxcbfvbxdbxebxfbxgbxhbfvbxibunbvLbvQbxkbrtbxlberoaMbxmbxnberbxobxpbxqbxrbxsbxybxybxubxyxkXxkXxkXaDybxzbqIbxAbxBbxCbxDbxEbxFbxGbxHbxIbxJbxKbxLaRhbfLbrSbxMbxNbfSbxObxPbxQbxRbgRbxSbfSbxTbxUbxVbwtbxWbwtatJatJaaabhraaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbxXbtobtobtobdrbdrbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybxYbxZbyabybcpacpacpacpabybbybbybbycbsqbydbyebyfbygbyhbyibeVbyjbswbykbeVbqCbylbjXbtUbtUbwRbymbynbyobcxbypbwRaaaaaaaAxaFybyqbyrbysaFCaAxaaaaaaaZDbytbpjbqDaZDbyuaZDbyvaZDbxbaIPbywbfvbyxbxebyybsHbyzbfvbqGamDbyAbyBbyCbrtbyDberbfDbxvbxtberbfBbyFbfBbyHbyIbyJbyJbyJbyJbyJbyJbyJbyJbyLbyMbfIbfIbfIbfIbfIbyNbyObtcbyPbxLbxLbyQbyRbyNbySbyTbyUbyVbyWbyXbyYbyZbzabzbbfSbzcbfSbzdbzebzebzebzebzebzebzfatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaatJaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaabzgbwybwybzhbxZbzibvdbzjdjRdjRbzjbvdbvdbvdbzkbsqbzlbzmbznbzobzpbeVbeVbzqaZJbeVbeVbzrbzsbztbzubzvbzwbzxbzybzzbzAbzBbwRbzCbwRaAxaAxbzDaHcbzEaAxaAxaaaaadaZDbzFbzGbzHaZDbzIaZDbzJaZDbxbaIPbywbfvbzKbxebzLbzMbzNbfvbzObunbzPbyBbuubzQbqGbqGbzRbzSbzTbzUbzVbzWbzXbzYrFabAabAbbAcbAdbAebAfbAgbAhbuAbAibAjbAkbAlbAmbAnbAobApbAqbArbAsbAtbxLbAubAvbAwbAxaSxbyVbAybAzbAAbABbgRbACbADbAEbAFbAGjkMjkMjkMjkMbAHbAIbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabAKbALbAKbAMbANbAObAPbAQxtbxtbxtbbvdbARbvdbASbsqbATbAUbAVbAWbAXbAYbtPbBabBbbBcbBdbBebylbjXasFbBfbBgbBhbBibBjbzAbBkbwRbBlbBmaTBbBnbBovzbbBpbBqaTBaaaaaabBrbBsbBtbBrbBrbBrbBrbBubBrbBvaLzbBwbfvbfvbBxbBybBzbfvbfvbrtbBAbBBbjnbBDbBCbBEbjnbBFbyEbrtbrtbrtbyEbrtbrsbzZbAabBGbBHbBIbBJbBKbBLbAhbBMbBNbBObBPbBPbBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabuJbCbbyVbyVbCcbCdbCebCcbyVbCfbCfbCfbCfbCfbCfbCfbCfbCfbCgbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadayUbscayUayUayUayUayUayUbsdayUaadaadaadaaabdrbsebdrbsfbgabsgbshbdraRTbsiaPjbsjbskbsmbsmbsmbsmbsmbsmbsmbsmbsmbsobspbsqbsqbsqbsqbsqaZmaZmbsraZiaZmaZmbeVbssbstbsubsvbswbsxjdjbsybszbqCaIPbsAaZvbsBaZvaZvaZvaZvbgIbcQbsCaZvbsDaAxaAxaAyaHcaAzaAxaAxaZDaZDaZDbbNbpjiWlbgQbpRbaWbsEaZDbnYaIPbjXbfvbsFbsGbsHbsHbsIbsJbrtbsKbrtbrtbrsbrtbrtbfDuHibxxbsMberbsQbsObsPbPBwytiJKtmtvQxbrAbsSgFObxjbqHbsUbqIbsVbsWbsXbsYbsZbtabtbbtcbtdbtebtfbtgbthbfLbtibtjbtkbfSbgRbgSbgRbtlbgRbgRbfSbrYbmtaMyaMyaMyaMyaMyaaaatJaaeaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaabdrbtnbtobtpbtqbtqbtrbtsbttbtuaPjbtvbtwbtxbtxbtxbtybtybtybtybtybtybtzbtAbsqbtBbtCbtDbtEbtFbtGbtHbtIbsqbtJbtKbtLbeVbeVbtMbtNbtObtPbtQbtRbtSbtTbbZbtUbtVbtWbtXbtYaZvbgJbtZaZvaZvaadaAxbuaaBsbubbucaBvaAxbytuLBaZDbudbpjwPPbuebufbugbuhaZDbnYaIPbjXbfvbuibsGbujbukbulbumbrtbunbuobupbuqburbusbfDhjpvKwhwYberbsQbuvbuwbuxbfBbrzbpYbsRbsTbqHbqHbqHbqHbuAbqIbuBbuCbuDbuEbuBbtabuFbuGbtcbtcbtcbtcbuHbfLbuIbuJbuKbfSbuLbgRbgRbuMbuNbuObfSbrYbuPbuQbuRbuSbuTaaeaaeaaeaaeatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdrbuUbdrbuVbuWbuWbuXbdrbuYbuYaPjbuZbvabuZbuZbuZbvabuZaPjaPjbsqbsqbvbbvcbsqbvdbvdbvdbvdbvdbvdbvebvfbvgbvhbvibvjbvkbvlbvmbvnbvobswbvpbszbqCbvqbvrbvsbvtbvubvvbvwaZvbvxbvyaZvaadaadaAxbvzaCSbvAaFzbvBaAxdODhLZaZDbvCbvDaZDaZDaZDaZDbvEaZDbvFaIPbvGbfvbvHbvIbvJbsHbsIbvKbrtbunbvLbvMbvNbvObvPberbvRbvSiXJberbsQbvUbvVbvWbfBbrAbrAbrAbrAbqHbvYbOmbvZbuAbqIbwabsWbwbbsYbwcbtabwdbwebwfbwgbwhbwibwjbfLbwkbuJbwlbfSbwmbwnbwobwpbwqbwrbfSbrYbuPbwsbwtbwtbwtatJaaaaaaaaeaaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbwubtobwvbuWbwwbwxbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybwzbwAbwBbwCbwDbvdbvdbvdbwEbvdbvdbwFbwGbwHbtPbwIbwJbtPbwKbwLbwMbswbwNbeVbwObwPbbfbtUbwQbwRbwRbwRbwRbwSbwTbwRaadaaaaAxaEnaHbaEobwUaEqaAxbaWbaWbaWbwVbwWbwXbwYbwZaZDbxaaZDbxbaIPbxcbfvbxdbxebxfbxgbxhbfvbxibunbvLbvQbxkbrtbxlberoaMbxmbxnberbxobxpbxqbxrbxsbxybxybxubxyxkXxkXxkXaDybxzbqIbxAbxBbxCbxDbxEbxFbxGbxHbxIbxJbxKbxLaRhbfLbrSbxMbxNbfSbxObxPbxQbxRbgRbxSbfSbxTbxUbxVbwtbxWbwtatJatJaaabhraaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbxXbtobtobtobdrbdrbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybxYbxZbyabybcpacpacpacpabybbybbybbycbsqbydbyebyfbygbyhbyibeVbyjbswbykbeVbqCbylbjXbtUbtUbwRbymbynbyobcxbypbwRaaaaaaaAxaFybyqbyrbysaFCaAxhmEdNEwPPcnlbpjlzeaZDbyuaZDbyvaZDbxbaIPbywbfvbyxbxebyybsHbyzbfvbqGamDbyAbyBbyCbrtbyDberbfDbxvbxtberbfBbyFbfBbyHbyIbyJbyJbyJbyJbyJbyJbyJbyJbyLbyMbfIbfIbfIbfIbfIbyNbyObtcbyPbxLbxLbyQbyRbyNbySbyTbyUbyVbyWbyXbyYbyZbzabzbbfSbzcbfSbzdbzebzebzebzebzebzebzfatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaatJaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaabzgbwybwybzhbxZbzibvdbzjdjRdjRbzjbvdbvdbvdbzkbsqbzlbzmbznbzobzpbeVbeVbzqaZJbeVbeVbzrbzsbztbzubzvbzwbzxbzybzzbzAbzBbwRbzCbwRaAxaAxbzDaHcbzEaAxaAxgpLwFFrDkbzFbzGbzHaZDbzIaZDbzJaZDbxbaIPbywbfvbzKbxebzLbzMbzNbfvbzObunbzPbyBbuubzQbqGbqGbzRbzSbzTbzUbzVbzWbzXbzYrFabAabAbbAcbAdbAebAfbAgbAhbuAbAibAjbAkbAlbAmbAnbAobApbAqbArbAsbAtbxLbAubAvbAwbAxaSxbyVbAybAzbAAbABbgRbACbADbAEbAFbAGjkMjkMjkMjkMbAHbAIbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabAKbALbAKbAMbANbAObAPbAQxtbxtbxtbbvdbARbvdbASbsqbATbAUbAVbAWbAXbAYbtPbBabBbbBcbBdbBebylbjXasFbBfbBgbBhbBibBjbzAbBkbwRbBlbBmaTBbBnbBovzbbBpbBqaTBaZDaZDbBrbBsbBtbBrbBrbBrbBrbBubBrbBvaLzbBwbfvbfvbBxbBybBzbfvbfvbrtbBAbBBbjnbBDbBCbBEbjnbBFbyEbrtbrtbrtbyEbrtbrsbzZbAabBGbBHbBIbBJbBKbBLbAhbBMbBNbBObBPbBPbBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabuJbCbbyVbyVbCcbCdbCebCcbyVbCfbCfbCfbCfbCfbCfbCfbCfbCfbCgbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJatJatJbhratJbhrbhratJbhraaaaaaaaaaaaaaaaaaaaabChbCibCjbCkbvdbzibvdbzjdjRbClbzjbvdbvdbCmbsqbsqbeVbCobCpbCqbCrbCrbswbCtbCubCvbCwbBebylbjXasJbCxbCybCzbCAbCAbCBbCCbCDbCEbCFaTBbCGbCHbCIbCJbCKaTBaadaadbBrbCLbCMbCNbCObCPbCQbCRbBrbnYaIPbCSbCTbCUbCVbCWbCXbCYbCZbDabDbbDcbDdbDdbDdbDdbDdbDebDfbDdbDdbDdbDgbusbDhbDibAabDjbDkbDlbDlbDmbDnbAhbuAbAibDobDpbDqbDrbDsbDtbDubtcbDvbtcbtcbtcbDwbyNbDxbDybDzbDAbDBbDCbDDbDEbDFbDGbDHbDIbDJbDKbDLbDKbDMbDNbDObDPbAJatJatJatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabzgbwybwybDQbvdbzibvddgbdgbdgbdgbbvdbvdbDRbDSbDTbeVbDUbDVbDWbDXbDXbDXbDYbDZbCvbCwbBebylbjXbEabBfbwRbEbbEcbEdbEebEfbEgbEhbEiaTBbEjbCHbEkbElbEmaTBaaaaaabBrbEnbEobEpbEqbErbErbEsbEtbEubEvbEwbExbEybEzbEAbEBbEBbECbEDbEEbEFbEGbEHbEIbEJbEKbELbEMbHqbrtbENbEObEObEPbAabAabAabEQbERbESbBKbDnbAhbETbAibfLbyNbyNbyNbyNbyNbyNbyNbyNbyNbEUbEVbEUbyNbEWbEXbEYbEZbEZbEZbFabFbbFcbFdbFebFfbFgbFhbFibFhbFjbFkbFlbFmbFnbwtbFobFobwtaadiWgiWgiWgaadiWgiWgiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaabFpbChbCibCjbxYbFqbvebFrbwDbvdbFqbvdbvdbvdbDRbFsbFtbeVbFubFvbFwbswbswbswbFxbswbCvbCwbBebylbjXbFybFzbwRbFAbFBbFCbFDbypbwRbFEbFFaTBbFGbFHaMZbjWbFIaTBaaaaaabBrbFJbFKbFLbFMbFNbFObFPbBrbFQaIPbFRbqGbqGbFTbFUbFVbqGbqGbFWbfzbfzbFWbqGbFWbqGbFWbqGbFWbqGbfzbfzbEObFZbDlbGabGbbAabEQbGcbGdbGebGfbAhbGgbGhbGibGjbGkbEZbEZbGlbEZbEZbGmbGnbGobGpbGqbEZbGrbGsbGtbGubGubGubGvbGvbGvbGvbGwbGxbGybGzbGAbGzbGBbGCbCfriRbGEbGFbGGbGHbwtaadaaaaaaaaaatJaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
@@ -7957,15 +7993,15 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGby
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiWgaaabhraaaaaaaaaaaabhraadaaeaaeaaeaaeaaeatJaadaadaadaadaadbXScffbTLbTLgwdcfgbObcfhbObcfibObcdWbTLbTLcfjbXRbObaaaaadaaaaaabXSlrDbWFbObbZacfkcflcfmcflcfnbZacfocfpbZabZabZabZacfqcfrbQQcfscftcfucfvbZubZucfwbYdcfxcfycfzcfAbZubZubZncfBcfCcfDcfCcfDcfEcfDcfFaadcaBcaBcaBcaBcaBaadbOhwHdbZvgAicfGcfHcfIcfJcfKcfLcfMcfNcaKcaKcaKcaKcfObZvwHdbODcfPcfQcfRcfScfTbYzcfUbYzcfVcfWbPWbPWcfXbVYcfYcdHcdHsIocdJuRXceWjMfjMfaprcdPcgbcgccgdcgecgfbQorWbbXEccDbXEbZYbZYbZYbZYbXEbcgnsmoFOaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeDWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiWgatJbhratJcghbhratJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabObbObccGbTLbTLbTLcgibTLcdVcgjbObbObbObcgkbObbObbObbXSbXSbXScglcgmcgncgoccMbZabZabZabZabZabZabZabZabZabZacfjcgpbObcgqcgrcgscgtcgubYicgvcepcgwcepbYdcgxbZubZucfAcgycazcazcgzcgAcgBcbScgCcgDcgEcjOcbXcbYcgFcgGcgGcaBaadbOhwHdcgHcgIcgIcgIcgJcgKcaKcgLcfHcgMcfHcfHcfHcfHcgNbZvwHdbODceKcgOceKcgPcgQbYzcfUbYzcgRcgScgTcgTcgUbVYcgVcgWcdHgdLccyccyuNYccyccyccycdPcdQcgZchacgbchbbQorWbbXExRvsVucEzcEzcEzcEzycpmpbtzPmQMaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaoBaoBaaeaadaadchcaoBbObbObbObbObbObbObbObbObbObbObbTLbTLbTLbTLbTLchdchechfchfchgchhchichjchjchjchjchjchjchjchjchjchjchkchlchlchmbObchnchocgscgtchpchqchrcazcazchschtcazcazchuchvchwbZuchxchychzchAbZuchBchCchDcdtaadcduchEchFchGcaBaadcccchHbXcbXcbXcbXebZvchIcaKchJchKchLchMchNchNchNchObZvwHdbODbVYbVYbVYbVYbXxbYzcfUchPchQbVYbVYbVYbVYbVYchRchScdHcdHcdHcdHceUchUboIchVchWbCfbCfbCfbCfbCfbCfrWbbXEccDbXEbZYbZYbZYbZYbXEbbljttmSVaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaachXchYchYchYchYchZciaciacibciccidciecifcigcihciibObcijbObbObbObbObbObcikbObbObbWFbXTcilcilcilcilcilcilcilcilcimcimcimcimcimbXRcinbObchnchocgsciocipciqcircisceucitciucivceuciwcixciycizciAciBciCciDbZuchBciEciFceCceDcbYciGcgGcgGcaBaadcccciHbOhbOhbOhwHdbZvciIcaKcaKciJciKciLcaGchNcaGciMbZvwHdbODciNcgTcgTciOciPbYzciQcePciRciSbPWbPWbPWbVYciTciUciVcdHciWcdHcdHcdHciXciYciZcjacjbcjccjdcjecjfrWbbXEccDbXEaadaadatJatJbXEaPaaPaaPaaPaevKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaachXchYchYchYchYchZciaciacibciccidciecifcigcihciibObcijbObbObbObbObbObcikbObbObbWFbXTcilcilcilcilcilcilcilcilcimcimcimcimcimbXRcinbObchnchocgsciocipciqcircisceucitciucivceuciwcixciycizciAciBciCciDbZuchBciEciFceCceDcbYciGfUccgGcaBaadcccciHbOhbOhbOhwHdbZvciIcaKcaKciJciKciLcaGchNcaGciMbZvwHdbODciNcgTcgTciOciPbYzciQcePciRciSbPWbPWbPWbVYciTciUciVcdHciWcdHcdHcdHciXciYciZcjacjbcjccjdcjecjfrWbbXEccDbXEaadaadatJatJbXEaPaaPaaPaaPaevKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaadaaeaoBaadaoBaoBbXSbXSbXSbTLcjgcjhcjicjjcjkbObbTLbObcjlcjmcjlcjncjogOkcjpbWFbXTcilcjqcjrcjscjtcjucjvcjqcjwcjxcjycjzcimcimcinbObcjAchocgscjBcjCcjDcjDcjEcjFcjFcjFcjFbYdcjGcjHcjIcjIcjIcjJbZuchzcjKcjLcjMcjNcjOcjPcaBcaBcaBcaBcaBaadcccciHcjQcjRbLAwHdcaCcjScjTcjUcjVcjWcjXcjYchNcjYcjZbZvwHdbODckabPWbPWckbckcbYzcfUbYzcfVckdbPWckecfXbVYckfckgckhckickjckkcklcklckmcknckockpckqckrckscktcjfrWbbXEccDbXEbXEbXEaadaadaadaadaadaadatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaadaaeaaeaaeaaeaaeckubTLckvbTLckwckxcjhckybTLckzbTLbObcjlckAcjlckBckCcjlckDbWFbXTcilcjqckEckFckGckHckIcjqckJckKckLggkckNcimcinbObchnchocgsbYdckObYdckPckQcjFckRckSckTbYdckUcfAckVcjIckWciDckXckYckZclacgDclbcjOclccbYcldcleclfcaBaadbOhciHbOhclgclhwHdbZvclicljclkcllclmcljclnchNclnclocckwHdbODbPWbPWbPWclpclqcePclrbYzcgRclscgTcgTcgUbODcltcluclvclwcltcltclxclyclzclAclBclCclDclEcjfclFcjfrWbbXEclGbXEclHbXEatJcsjaadaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaaaaoBaoBaoBaadaadbXSbXSbXSclIclJclKclLclMccHbObbObclNcjlclOclPcnRcnRclRclRbWFbXTcilclSclTclUckGclVclSclSckJclWclXclYclZcimcinbObchnchoaYncjFcmbcmccmccmdcjFcmfcmgcmhbYdbZucfAcmicmjckWcmkckXckYcmlcmmcgDcmncmocmpcmqcmrcmscmtcaBaadbOhciHbOhbUcbUcbLBbZvbZwcmucmvbZwcmwbZwbZwbZwbZwbZwbZvwHdbODbVYbVYbVYbVYchQcmxcfUcmychQbVYbVYbVYbVYbODcmzcmAcmzcmBcmzcltclxclycmCcmDcjfcmEcmFcmEcjfcmGcjfrWbbXEcmHcmIcblbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadbXScmJcmKcmKcmLcjkbXRbObcmMcmNcjlcmOclPcnRcnRmUPpmpbShbXTcilclSclScmScmTcmUcmVcmWcmXcmYcmZcnacnbcimcinbObcnccndcnecjFcnfcngcnhcnicnjcnjcnjcnjcbOcbQcfAckVcjIckWcnpckXcmkcnqchBcnrcnsceCcntcnucnvcleclecaBaadcccciHcnwbOhcnxbLBcnycgIcgIcnzbZwcnAcnBcnCbOhcnDcnEbOCwHdbODciNcgTcgTcnFciPbYzciQcePcnGcnHbPWbPWbPWbODcnIcmzcmzcmzcmzcltcnJcnJcnKcmDcjfcnLcnLcnLcnLcnLcjfrWbbXEcnMcbmcnNbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadbXScmJcmKcmKcmLcjkbXRbObcmMcmNcjlcmOclPcnRcnRmUPpmpbShbXTcilclSclScmScmTcmUcmVcmWcmXcmYcmZcnacnbcimcinbObcnccndcnecjFcnfcngcnhcnicnjcnjcnjcnjcbOcbQcfAckVcjIckWcnpckXcmkcnqchBcnrcnsceCcntcnucnvbfoclecaBaadcccciHcnwbOhcnxbLBcnycgIcgIcnzbZwcnAcnBcnCbOhcnDcnEbOCwHdbODciNcgTcgTcnFciPbYzciQcePcnGcnHbPWbPWbPWbODcnIcmzcmzcmzcmzcltcnJcnJcnKcmDcjfcnLcnLcnLcnLcnLcjfrWbbXEcnMcbmcnNbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaaQaaQaaQaaQaaQaaQaaYaaQaaQaaQaaQaaQaaaaaabObbObbObbObbObbObcnObObbObbObbObcnPcnQcjlcmOclPcnRcnRcmOcmRbShbXTcilcnScnTcnUcnVcjqcmSapccnWaWYcnXcnYcnZcimcoacobcoccodcgscjFcoecnkcogcohcoicojcokcolbYdbZuconcjIcjIcjIcoobZucopcoqchBchCbZucdtcorcoscaBcaBcaBcaBaadccccotcoubOhcovcowcoxiDWcoycozbOhcoAcoBcoCbOhcoDbYubYwcoEbODckackebPWcoFckcbYzcfUbYzcfVcoGbPWbPWcfXbODcoHcmzcoIcoJcoKcoLcoMcoNcoOcmDcjfcnLcoPcoQcnLcnLcjfrWbbXEcoScoTccDbZYatJaaaatJaaaaaaaaahAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaadaaaaadaaaacfaaaaadaaaaadaaaaaQaadaadbObcoUcoVbTLcoWbTLbTLbTLbTLbXRbObcoXcoYcoZkJiclPcnRcnRjXNjXNbShbXTcilcpccpdcmUcmUcmUcpecpfcpgcphcpicpjcpkcimbObbObcplcpmcpncjFcjFcpobnZcohcprcprcprcprbYdcnncnocptcpucpvcpwcpxcpycpzclacgDcpAcjOclccnucpBcpCcpCcaBaadcccbLAciHbOhbOhcpDbKtbOhcpEwKnbOhbOhcpGbOhbOhwKncpHbSXcpIbODbPWbPWbPWcpJcpKcePclrbYzcgRcpLcgTcgTcgUbODcmzcmzcpMcmzcmzcltcnJcnJcpNcpOcjfcnLcnLcpPcnLcnLcjfrWbbXEbXEbXEccDbXEaadaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcpRcpSaaacpQcpRcpSaaacpQcpRcpSaaaaaQaaaaaabObcpTbTLcpUbObbObcpVbObbObbObbObckAcpWckAckAcjlcjlcjlcjlcjlbShbXTcilclScpXcpYcjqcpZclSclSckJcqackMcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcqmcqntDkcqpcqqcqrbYdcqtcqucqvceucqwcqxcgycqycgCcexchCcqzcdtcorcqAcqBcqCcqDcaBaadbOhbOhciHcqEcqFcpDcqGbOhcpEcqHbYucqIcqJcqKbYucqLcqMbXGcqNbODbVYbVYbVYbVYchQcqOcfUcqPchQbVYbVYbVYbVYbODcltcltcltcltcltcltcqQcqQcqRcqScjfcjfcjfcjfcjfcjfcjfrWbbXEcqTgWmccDbXEaadaadlHkaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObcqWbTLbTLbObcfibTLcqYccNcgjbObcqZcracrbckAaMqcjlcjlclQclQbWFbXTcilcjqcrdcrecjqcrfcrgcjqckJcrhcricrjcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvbFXcrxbnZcnkbYdcrzbZucpscgycrAcrBcrCcrDcrEbZtcrFcrGceCcntcnucrHcpCcpCcaBaadbOhbLAcrIcrJcrKcrLbYmbOhcrMcrNcrOcqMbOCcqMcpHcrPcrQbXGcrRbODciNcgTcgTcrSciPbYzcrTcePcrUcrVbPWbPWbPWbODcrWbZWcrXcrYcrYcltcrZcrZcqRcmDcltcnMcsacoScsbcscbXErWbbXEcsbcsbccDbXEbXEbXEaaeaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObcqWbTLbTLbObcfibTLcqYccNcgjbObcqZcracrbckAaMqcjlcjlclQclQbWFbXTcilcjqcrdcrecjqcrfcrgcjqckJcrhcricrjcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvbFXcrxbnZcnkbYdcrzbZucpscgycrAcrBcrCcrDcrEbZtcrFcrGceCcntcnucrHqcIcpCcaBaadbOhbLAcrIcrJcrKcrLbYmbOhcrMcrNcrOcqMbOCcqMcpHcrPcrQbXGcrRbODciNcgTcgTcrSciPbYzcrTcePcrUcrVbPWbPWbPWbODcrWbZWcrXcrYcrYcltcrZcrZcqRcmDcltcnMcsacoScsbcscbXErWbbXEcsbcsbccDbXEbXEbXEaaeaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcqVcpSaadcpQcqVcpSaadcpQcqVcpSaaaaadaadaadbObaVjcqXcsdbObcsechfcsfcsgcfjbObcshneLcsickAcrccjlckBrCTcskbWFbXTcilcjqcslcsmcsncsocspcjqcsqcsrcsscstcsucimcsvcswcsxcsycszcsAcsBcsCcsDcpqcsEcohcsGixkcsIcsJbZucpscsKcsLbZubZucsKcsKcsKchCcsMcsNcorcoscaBcaBcaBcaBaadbOhcovcsOcsPcsQcsRcsSbOhbOhcsTcsUcsVbOCcsWcsXbOhbOhbXGcrRbODckabPWbPWcsYckcbYzcfUbYzcfVcsZbPWbPWcfXbODcsbctactbctcctdcltctectecqRcmDcltctfctgcthctictjctkctlcmIcmIcmIctmctnctoctpaaeaaeaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObctqctrctsbObcttctubObctvbObbObctwctxctyckAdlhcjlcjlcpbcpbbWFbXTcilcilcilcilcilcilcilcilcimcimcimcimcimcimbObctAbObbObctBctBctBctCctDctEctBctFctGctHbYdbZucdpctIcsKcpwcesbZucaychwcsKchCcsKbYdctJctKcjPaadaadaadaadctLctMctNctOctPctQctQctQctRctSctTcsVctUcsVcsVbOhctVbXGcrRbODbPWbPWbSZctWctXcePctYbYzcgRctZcgTcgTcgUbODbXEcuacubbXEbXEcltcltcltcuccudcltcuecsbcufccDcugbXErWbbXEbXEcuhbXEbXEbXEbXEaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaaacpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaaaaadaaaaaacuicujcujcujcujbObbObcukculbObbObbObbObbObbObbXSbXSbXSbXSbObcumcuncgmcuocupcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcurbTLcttctBcuscutcuucuvcuwctBcuxcuycuzbYdcuAcuBcezcuCcuDcuEcuFcuCcuFcuCcuGcsKbYdcuHcuIcuJcuKcuLcuMctMcuNcuOcuPcuQcuRcuScuTctQcuUbLAcuVcuWcuXcuYcuZbXobXocvacvbbODbODbODbODbODbODbODcvcbODbODbODbODbODbODbODcvdcvecvfcvfcvgctkcvhcvicvjcvkbXEbXEbXEbXEcvlbXEbXEcvmbXEcvncvocsbbXEaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG
+55 -18
View File
@@ -468,6 +468,7 @@
/obj/structure/table/wood,
/obj/item/radio/intercom,
/obj/effect/decal/cleanable/dirt,
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel,
/area/security/courtroom)
"aaW" = (
@@ -5246,7 +5247,6 @@
/area/service/chapel/office)
"ajf" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/wiki/security_space_law,
/obj/item/taperecorder,
/obj/effect/turf_decal/tile/red{
dir = 1
@@ -7257,6 +7257,9 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 30
},
/obj/item/book/manual/gato_spacelaw{
pixel_x = 12
},
/turf/open/floor/plasteel/dark,
/area/command/heads_quarters/hos)
"amI" = (
@@ -9568,6 +9571,7 @@
name = "Station Intercom (Command)";
pixel_x = 1
},
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/dark,
/area/command/bridge)
"aqE" = (
@@ -12263,7 +12267,7 @@
/area/medical/genetics)
"avj" = (
/obj/structure/table/wood,
/obj/item/storage/fancy/donut_box,
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/carpet,
/area/command/heads_quarters/captain)
"avk" = (
@@ -12413,11 +12417,11 @@
dir = 1
},
/obj/item/storage/briefcase,
/obj/item/book/manual/wiki/security_space_law,
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24
},
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/dark,
/area/security/courtroom)
"avw" = (
@@ -22257,7 +22261,7 @@
pixel_y = -30
},
/obj/item/crowbar,
/obj/item/book/manual/wiki/security_space_law,
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/dark,
/area/security/checkpoint/engineering)
"aMi" = (
@@ -41425,7 +41429,8 @@
},
/obj/machinery/door/airlock/maintenance/external{
name = "mass driver intersection";
req_access_txt = "12"
req_access_txt = "12";
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/port/fore)
@@ -76506,7 +76511,8 @@
},
/obj/machinery/door/airlock/maintenance/external{
name = "mass driver intersection";
req_access_txt = "12"
req_access_txt = "12";
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fore)
@@ -77742,11 +77748,11 @@
/turf/open/floor/plating,
/area/maintenance/aft)
"cEp" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12";
welded = 1
dir = 4
},
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/dark,
/area/maintenance/starboard/fore)
"cEr" = (
@@ -81596,6 +81602,12 @@
},
/turf/open/floor/plasteel/dark,
/area/service/theater)
"fVp" = (
/obj/effect/turf_decal/vg_decals/atmos/nitrogen,
/turf/open/floor/engine/n2{
initial_gas_mix = "n2=1000;TEMP=293.15"
},
/area/engineering/atmos)
"fXq" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -81988,9 +82000,6 @@
"hNk" = (
/turf/closed/wall/r_wall/rust,
/area/security/prison)
"hOQ" = (
/turf/open/floor/catwalk_floor,
/area/space/station_ruins)
"hPN" = (
/obj/structure/cable{
icon_state = "0-2"
@@ -82620,6 +82629,12 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/cargo/storage)
"kBh" = (
/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,
/turf/open/floor/engine/n2o{
initial_gas_mix = "n2o=1000;TEMP=293.15"
},
/area/engineering/atmos)
"kFQ" = (
/turf/open/space/basic,
/area/solars/starboard/aft)
@@ -83176,6 +83191,12 @@
},
/turf/open/floor/plasteel/dark,
/area/hallway/secondary/exit/departure_lounge)
"ohq" = (
/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,
/turf/open/floor/engine/co2{
initial_gas_mix = "co2=1000;TEMP=293.15"
},
/area/engineering/atmos)
"ohv" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/decal/cleanable/dirt,
@@ -83987,6 +84008,12 @@
},
/turf/open/floor/plating/asteroid/airless,
/area/space/nearstation)
"sqP" = (
/obj/effect/turf_decal/vg_decals/atmos/oxygen,
/turf/open/floor/engine/o2{
initial_gas_mix = "o2=1000;TEMP=293.15"
},
/area/engineering/atmos)
"ssF" = (
/turf/closed/wall/r_wall,
/area/engineering/atmos)
@@ -84036,6 +84063,10 @@
/obj/effect/spawner/structure/window/plasma/reinforced,
/turf/open/floor/plating,
/area/engineering/atmos)
"sCq" = (
/obj/effect/turf_decal/vg_decals/atmos/air,
/turf/open/floor/engine/air,
/area/engineering/atmos)
"sDr" = (
/obj/machinery/cryopod/tele,
/obj/effect/turf_decal/tile/neutral{
@@ -84287,6 +84318,12 @@
icon_state = "panelscorched"
},
/area/maintenance/port/aft)
"tUa" = (
/obj/effect/turf_decal/vg_decals/atmos/plasma,
/turf/open/floor/engine/plasma{
initial_gas_mix = "plasma=1000;TEMP=293.15"
},
/area/engineering/atmos)
"tVh" = (
/obj/structure/sign/warning/nosmoking,
/turf/closed/wall,
@@ -87961,7 +87998,7 @@ uoV
uoV
uoV
uoV
hOQ
uoV
uoV
uoV
uoV
@@ -111050,15 +111087,15 @@ bFa
cBb
bFa
aFM
aDz
fVp
aDA
aML
aFM
aDC
sqP
aDD
aMO
aFM
aMY
sCq
bUQ
aMY
bFP
@@ -113895,7 +113932,7 @@ acm
sAn
aHe
aFm
aFc
ohq
caK
acK
acm
@@ -114923,7 +114960,7 @@ acm
sAn
aHh
aFn
aFd
tUa
ccT
acK
aaa
@@ -115951,7 +115988,7 @@ acm
sAn
aHk
aFo
aFe
kBh
ctr
acK
acm
+4 -5
View File
@@ -8910,8 +8910,8 @@
/obj/machinery/light/small{
dir = 8
},
/obj/item/book/manual/wiki/security_space_law,
/obj/item/camera/detective,
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
"aDJ" = (
@@ -23848,10 +23848,6 @@
/obj/item/pen,
/obj/structure/table/reinforced,
/obj/item/folder/red,
/obj/item/book/manual/wiki/security_space_law{
pixel_x = 3;
pixel_y = 4
},
/obj/machinery/newscaster/security_unit{
pixel_y = 32
},
@@ -55192,6 +55188,7 @@
/obj/effect/turf_decal/tile/green{
dir = 8
},
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/dark,
/area/command/bridge)
"hma" = (
@@ -62891,6 +62888,7 @@
name = "Interrogation Intercom";
pixel_y = -31
},
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel/grimy,
/area/security/office)
"llE" = (
@@ -64629,6 +64627,7 @@
/obj/effect/turf_decal/tile/red{
dir = 8
},
/obj/item/book/manual/gato_spacelaw,
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
"mgJ" = (
File diff suppressed because it is too large Load Diff
+18 -3
View File
@@ -49156,14 +49156,17 @@
/area/engineering/main)
"ccm" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/vg_decals/atmos/nitrogen,
/turf/open/floor/engine/n2,
/area/engineering/atmos)
"ccn" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/vg_decals/atmos/oxygen,
/turf/open/floor/engine/o2,
/area/engineering/atmos)
"cco" = (
/obj/machinery/light/small,
/obj/effect/turf_decal/vg_decals/atmos/air,
/turf/open/floor/engine/air,
/area/engineering/atmos)
"ccp" = (
@@ -56053,6 +56056,10 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/plasteel,
/area/construction/mining/aux_base)
"eHO" = (
/obj/effect/turf_decal/vg_decals/atmos/plasma,
/turf/open/floor/engine/co2,
/area/engineering/atmos)
"eIL" = (
/obj/effect/turf_decal/tile/green{
dir = 1
@@ -58876,6 +58883,10 @@
},
/turf/open/floor/plasteel/dark,
/area/hallway/secondary/exit/departure_lounge)
"kAD" = (
/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,
/turf/open/floor/engine/n2o,
/area/engineering/atmos)
"kBe" = (
/obj/structure/reflector/double/anchored{
dir = 9
@@ -63932,6 +63943,10 @@
/obj/effect/turf_decal/plaque,
/turf/open/floor/plating,
/area/maintenance/department/engine)
"uNj" = (
/obj/effect/turf_decal/vg_decals/atmos/plasma,
/turf/open/floor/engine/plasma,
/area/engineering/atmos)
"uQa" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -105610,15 +105625,15 @@ bLe
bJP
bPh
bQa
bPh
kAD
bJP
bSk
bSX
bSk
uNj
bJP
bVo
bWf
bVo
eHO
bJP
aht
bYw
+1 -1
View File
@@ -645,7 +645,7 @@ GLOBAL_LIST_INIT(valid_plushie_paths, valid_plushie_paths())
/obj/item/toy/plush/beeplushie
name = "bee plushie"
desc = "A cute toy that resembles an even cuter bee."
icon_state = "plushie_bee"
icon_state = "plushie_h" //GS13 - wrong sprite name
attack_verb = list("stung")
gender = FEMALE
squeak_override = list('modular_citadel/sound/voice/scream_moth.ogg' = 1)
@@ -31,7 +31,7 @@
threat = 2
family_heirlooms = list(
/obj/item/book/manual/wiki/security_space_law,
/obj/item/book/manual/gato_spacelaw,
/obj/item/clothing/head/beret/sec
)
@@ -84,7 +84,7 @@
. = ..()
if(ishuman(mover))
var/mob/living/carbon/human/H = mover
if(H.nutrition >= NUTRITION_LEVEL_FAT)
if(H.fatness >= 1000) //GS13 edit - having over 1000 BFI lets you through
H.visible_message("<span class='warning'>[H] pushes through [src]!</span>", "<span class='notice'>You've seen and eaten worse than this.</span>")
return TRUE
else